Packages

LiveView Native code examples using Kino Smart Cells inside Livebook

Current section

Files

Jump to
kino_live_view_native lib server error_controller.ex
Raw

lib/server/error_controller.ex

defmodule Server.ErrorController do
use Phoenix.Controller
def not_found(conn, _) do
send_resp(conn, 404, "Not Found")
end
end