ash_hq/lib/ash_hq_web/controllers/page_controller.ex
Zach Daniel 867f9d5371 init
2022-03-21 00:43:24 -04:00

7 lines
137 B
Elixir

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