gin/araneae_context.go

9 lines
185 B
Go
Raw Normal View History

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()
}