mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-14 03:48:05 +08:00
7 lines
151 B
Elixir
7 lines
151 B
Elixir
defmodule LivebookWeb.ErrorView do
|
|
use LivebookWeb, :view
|
|
|
|
def template_not_found(_template, assigns) do
|
|
render("500.html", assigns)
|
|
end
|
|
end
|