This repository has been archived on 2018-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
forum/lib/forum_web/controllers/hello_controller.ex

8 lines
147 B
Elixir

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