mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
10 lines
163 B
Elixir
10 lines
163 B
Elixir
defmodule Chess.Api.GameController do
|
|
use Chess.Web, :controller
|
|
|
|
alias Chess.Game
|
|
|
|
def show(conn, _params) do
|
|
render conn, "show.json", id: 1
|
|
end
|
|
end
|