mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
36 lines
796 B
Go
36 lines
796 B
Go
package plugins
|
|
|
|
import "net/http"
|
|
|
|
type (
|
|
HTTPRouteParamDocumentation struct {
|
|
Description string
|
|
Name string
|
|
Required bool
|
|
Type string
|
|
}
|
|
|
|
HTTPRouteRegistrationArgs struct {
|
|
Description string
|
|
HandlerFunc http.HandlerFunc
|
|
IsPrefix bool
|
|
Method string
|
|
Module string
|
|
Name string
|
|
Path string
|
|
QueryParams []HTTPRouteParamDocumentation
|
|
ResponseType HTTPRouteResponseType
|
|
RouteParams []HTTPRouteParamDocumentation
|
|
SkipDocumentation bool
|
|
}
|
|
|
|
HTTPRouteResponseType uint64
|
|
|
|
HTTPRouteRegistrationFunc func(HTTPRouteRegistrationArgs) error
|
|
)
|
|
|
|
const (
|
|
HTTPRouteResponseTypeNo200 HTTPRouteResponseType = iota
|
|
HTTPRouteResponseTypeTextPlain
|
|
HTTPRouteResponseTypeJSON
|
|
)
|