Files
token-go/ctx/context.go

10 lines
173 B
Go

package ctx
type Context interface {
Request() Request
Response() Response
ReqStorage() ReqStorage
MatchPath(pattern string, path string) bool
IsValidContext() bool
}