Proxichat/web/controllers/page_controller.ex

8 lines
142 B
Elixir
Raw Permalink Normal View History

2015-11-29 04:34:42 +00:00
defmodule Proxichat.PageController do
use Proxichat.Web, :controller
def index(conn, _params) do
render conn, "index.html"
end
end