Files
osuuspuutarha/lib/osuuspuutarha_web/controllers/page_controller.ex
2023-03-16 21:41:42 +02:00

12 lines
225 B
Elixir

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