mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 23:43:01 +00:00
11 lines
213 B
Go
11 lines
213 B
Go
package types
|
|
|
|
import (
|
|
"github.com/containous/mux"
|
|
)
|
|
|
|
// InternalRouter router used by server to register internal routes (/api, /ping ...)
|
|
type InternalRouter interface {
|
|
AddRoutes(systemRouter *mux.Router)
|
|
}
|