mirror of
https://github.com/containous/traefik.git
synced 2025-02-01 05:47:13 +03:00
11 lines
185 B
Go
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)
|
||
|
}
|