mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
10 lines
157 B
Elixir
10 lines
157 B
Elixir
defmodule ChessWeb.PageController do
|
|
@moduledoc false
|
|
|
|
use ChessWeb, :controller
|
|
|
|
def index(conn, _params) do
|
|
render(conn, "index.html")
|
|
end
|
|
end
|