mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
8 lines
150 B
Elixir
8 lines
150 B
Elixir
defmodule TeslaMateWeb.CarView do
|
|
use TeslaMateWeb, :view
|
|
|
|
def render("command_failed.json", %{reason: reason}) do
|
|
%{error: reason}
|
|
end
|
|
end
|