Current section

Files

Jump to
ex_debug_toolbar lib ex_debug_toolbar plug router.ex
Raw

lib/ex_debug_toolbar/plug/router.ex

defmodule ExDebugToolbar.Plug.Router do
@moduledoc false
use Plug.Router
plug :match
plug :dispatch
forward "/__ex_debug_toolbar__", to: ExDebugToolbar.Endpoint
forward "/", to: ExDebugToolbar.Plug.Pipeline
end