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