rename ngin to rest
This commit is contained in:
31
rest/types.go
Normal file
31
rest/types.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package rest
|
||||
|
||||
import "net/http"
|
||||
|
||||
type (
|
||||
Route struct {
|
||||
Method string
|
||||
Path string
|
||||
Handler http.HandlerFunc
|
||||
}
|
||||
|
||||
jwtSetting struct {
|
||||
enabled bool
|
||||
secret string
|
||||
prevSecret string
|
||||
}
|
||||
|
||||
signatureSetting struct {
|
||||
SignatureConf
|
||||
enabled bool
|
||||
}
|
||||
|
||||
featuredRoutes struct {
|
||||
priority bool
|
||||
jwt jwtSetting
|
||||
signature signatureSetting
|
||||
routes []Route
|
||||
}
|
||||
|
||||
RouteOption func(r *featuredRoutes)
|
||||
)
|
||||
Reference in New Issue
Block a user