mirror of
https://github.com/correl/planning-poker.git
synced 2024-11-25 11:09:55 +00:00
8 lines
153 B
Elixir
8 lines
153 B
Elixir
|
defmodule PlanningpokerWeb.PageController do
|
||
|
use PlanningpokerWeb, :controller
|
||
|
|
||
|
def index(conn, _params) do
|
||
|
render(conn, "index.html")
|
||
|
end
|
||
|
end
|