Packages
ex_debug_toolbar
0.1.16
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/request.ex
defmodule ExDebugToolbar.Request do
alias ExDebugToolbar.Data.Timeline
defstruct [
pid: nil,
uuid: nil,
created_at: nil,
conn: %Plug.Conn{},
ecto: [],
logs: [],
timeline: %Timeline{}
]
end