1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/web/controllers/game_controller.ex
2016-12-10 19:35:01 +01:00

10 lines
159 B
Elixir

defmodule Chess.GameController do
use Chess.Web, :controller
alias Chess.Game
def show(conn, _params) do
render conn, "show.json", id: 1
end
end