server/lib/reaproche_web/controllers/page_controller.ex
Rodolphe Marbot bea29624ab fisrt
2022-05-17 21:26:44 +02:00

7 lines
145 B
Elixir

defmodule ReaprocheWeb.PageController do
use ReaprocheWeb, :controller
def index(conn, _params) do
render(conn, "index.html")
end
end