1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-06 13:17:52 +03:00
traefik/types/route_appender.go
2018-11-14 10:18:03 +01:00

11 lines
185 B
Go

package types
import (
"github.com/containous/mux"
)
// RouteAppender appends routes on a router (/api, /ping ...)
type RouteAppender interface {
Append(systemRouter *mux.Router)
}