9 lines
185 B
Go
9 lines
185 B
Go
|
package gin
|
||
|
|
||
|
import "golang.org/x/net/context"
|
||
|
|
||
|
// BaseContext gets the basic context of the request
|
||
|
func (ctx *Context) BaseContext() context.Context {
|
||
|
return ctx.Request.Context()
|
||
|
}
|