92d2045735
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
156 B
Elixir
9 lines
156 B
Elixir
defmodule EventosWeb.PageController do
|
|
use EventosWeb, :controller
|
|
import Logger
|
|
|
|
def index(conn, _params) do
|
|
render conn, "index.html"
|
|
end
|
|
end
|