mirror of
https://github.com/weloe/token-go.git
synced 2025-10-06 07:56:58 +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
|
|
}
|