mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 09:45:18 +00:00
39 lines
514 B
Go
39 lines
514 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/ncarlier/webhookd/pkg/config"
|
|
)
|
|
|
|
// HandlerFunc custom function handler
|
|
type HandlerFunc func(conf *config.Config) http.Handler
|
|
|
|
// Route is the structure of an HTTP route definition
|
|
type Route struct {
|
|
Method string
|
|
Path string
|
|
HandlerFunc HandlerFunc
|
|
}
|
|
|
|
// Routes is a list of Route
|
|
type Routes []Route
|
|
|
|
var routes = Routes{
|
|
Route{
|
|
"GET",
|
|
"/",
|
|
index,
|
|
},
|
|
Route{
|
|
"GET",
|
|
"/healtz",
|
|
healthz,
|
|
},
|
|
Route{
|
|
"GET",
|
|
"/varz",
|
|
varz,
|
|
},
|
|
}
|