9 lines
181 B
Elixir
9 lines
181 B
Elixir
|
defmodule ComfycampWeb.CinemaController do
|
||
|
use ComfycampWeb, :controller
|
||
|
|
||
|
def index(conn, _params) do
|
||
|
conn
|
||
|
|> render(:index, page_title: "Кинотеатр")
|
||
|
end
|
||
|
end
|