mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 08:45:41 +00:00
14 lines
276 B
Go
14 lines
276 B
Go
package api_impl
|
|
|
|
import "github.com/openziti/ziti/controller/rest_server/operations"
|
|
|
|
var routers []Router
|
|
|
|
func AddRouter(router Router) {
|
|
routers = append(routers, router)
|
|
}
|
|
|
|
type Router interface {
|
|
Register(fabricApi *operations.ZitiFabricAPI, wrapper RequestWrapper)
|
|
}
|