mirror of
https://github.com/weloe/token-go.git
synced 2025-10-05 15:36:50 +08:00
10 lines
173 B
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
|
|
}
|