mirror of
https://github.com/labstack/echo.git
synced 2025-04-02 22:05:34 +02:00
parent
abc669bd07
commit
0465314380
@ -27,6 +27,7 @@ type (
|
|||||||
Context interface {
|
Context interface {
|
||||||
netContext.Context
|
netContext.Context
|
||||||
SetNetContext(netContext.Context)
|
SetNetContext(netContext.Context)
|
||||||
|
NetContext() netContext.Context
|
||||||
Request() engine.Request
|
Request() engine.Request
|
||||||
Response() engine.Response
|
Response() engine.Response
|
||||||
Path() string
|
Path() string
|
||||||
@ -93,6 +94,10 @@ func (c *context) SetNetContext(ctx netContext.Context) {
|
|||||||
c.netContext = ctx
|
c.netContext = ctx
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *context) NetContext() netContext.Context {
|
||||||
|
return c.netContext
|
||||||
|
}
|
||||||
|
|
||||||
func (c *context) Deadline() (deadline time.Time, ok bool) {
|
func (c *context) Deadline() (deadline time.Time, ok bool) {
|
||||||
return c.netContext.Deadline()
|
return c.netContext.Deadline()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user