This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
augie/webapp/lib/augie_web/controllers/page_controller.ex

7 lines
137 B
Elixir

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