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.
graphql-lightning-talk/lib/faces_web/controllers/page_controller.ex

8 lines
136 B
Elixir
Raw Normal View History

2018-04-08 09:20:53 +12:00
defmodule FacesWeb.PageController do
use FacesWeb, :controller
def index(conn, _params) do
render conn, "index.html"
end
end