Packages
kino_live_view_native
0.2.0-rc.1
LiveView Native code examples using Kino Smart Cells inside Livebook
Current section
Files
Jump to
Current section
Files
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