Packages
ex_debug_toolbar
0.1.8
A debug web toolbar for Phoenix projects to display all sorts of information about request
Current section
Files
Jump to
Current section
Files
lib/ex_debug_toolbar/plug/router.ex
defmodule ExDebugToolbar.Plug.Router do
use Plug.Router
plug :match
plug :dispatch
forward "/__ex_debug_toolbar__", to: ExDebugToolbar.Endpoint
forward "/", to: ExDebugToolbar.Plug.Pipeline
end