You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/rest/types.go

42 lines
679 B
Go

package rest
4 years ago
import (
"net/http"
"time"
)
4 years ago
type (
// Middleware defines the middleware method.
Middleware func(next http.HandlerFunc) http.HandlerFunc
// A Route is a http route.
4 years ago
Route struct {
Method string
Path string
Handler http.HandlerFunc
}
// RouteOption defines the method to customize a featured route.
RouteOption func(r *featuredRoutes)
4 years ago
jwtSetting struct {
enabled bool
secret string
prevSecret string
}
signatureSetting struct {
SignatureConf
enabled bool
}
featuredRoutes struct {
timeout time.Duration
4 years ago
priority bool
jwt jwtSetting
signature signatureSetting
routes []Route
maxBytes int64
4 years ago
}
)