update comment for ghttp.Request (#1968)

This commit is contained in:
yuancjun
2022-07-06 19:48:43 +08:00
committed by GitHub
parent 047c90466d
commit ab929e465b

View File

@ -31,8 +31,8 @@ type Request struct {
Session *gsession.Session // Session.
Response *Response // Corresponding Response of this request.
Router *Router // Matched Router for this request. Note that it's not available in HOOK handler.
EnterTime int64 // Request starting time in microseconds.
LeaveTime int64 // Request to end time in microseconds.
EnterTime int64 // Request starting time in milliseconds.
LeaveTime int64 // Request to end time in milliseconds.
Middleware *middleware // Middleware manager.
StaticFile *staticFile // Static file object for static file serving.