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)
|
||
|
}
|