mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
8 lines
125 B
Elixir
8 lines
125 B
Elixir
defmodule Chess.Api.GameView do
|
|
use Chess.Web, :view
|
|
|
|
def render("show.json", %{game: game}) do
|
|
game.board
|
|
end
|
|
end
|