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

8 lines
122 B
Elixir

defmodule Chess.GameView do
use Chess.Web, :view
def render("show.json", %{ id: 1 }) do
%{ foo: :bar }
end
end