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