mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
8 lines
155 B
Elixir
8 lines
155 B
Elixir
defmodule RailwayphoenixWeb.PageController do
|
|
use RailwayphoenixWeb, :controller
|
|
|
|
def index(conn, _params) do
|
|
render(conn, "index.html")
|
|
end
|
|
end
|