1217361b6c
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
222 B
Elixir
13 lines
222 B
Elixir
defmodule EventosWeb.PageController do
|
|
@moduledoc """
|
|
Controller to load our webapp
|
|
"""
|
|
use EventosWeb, :controller
|
|
|
|
plug :put_layout, false
|
|
|
|
def index(conn, _params) do
|
|
render conn, "index.html"
|
|
end
|
|
end
|