server/lib/reaproche_web/controllers/page_controller.ex

8 lines
145 B
Elixir
Raw Normal View History

2022-05-17 19:26:44 +00:00
defmodule ReaprocheWeb.PageController do
use ReaprocheWeb, :controller
def index(conn, _params) do
render(conn, "index.html")
end
end