diff options
Diffstat (limited to 'lib/waev_web/controllers')
-rw-r--r-- | lib/waev_web/controllers/page_controller.ex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/waev_web/controllers/page_controller.ex b/lib/waev_web/controllers/page_controller.ex new file mode 100644 index 0000000..3bb2336 --- /dev/null +++ b/lib/waev_web/controllers/page_controller.ex @@ -0,0 +1,7 @@ +defmodule WaevWeb.PageController do + use WaevWeb, :controller + + def index(conn, _params) do + render(conn, "index.html") + end +end |