8 lines
153 B
Elixir
8 lines
153 B
Elixir
|
defmodule RecycledCloudWeb.PageController do
|
||
|
use RecycledCloudWeb, :controller
|
||
|
|
||
|
def index(conn, _params) do
|
||
|
render(conn, "index.html")
|
||
|
end
|
||
|
end
|