mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
30 lines
690 B
Go
30 lines
690 B
Go
package session // import "github.com/docker/docker/api/server/router/session"
|
|
|
|
import "github.com/docker/docker/api/server/router"
|
|
|
|
// sessionRouter is a router to talk with the session controller
|
|
type sessionRouter struct {
|
|
backend Backend
|
|
routes []router.Route
|
|
}
|
|
|
|
// NewRouter initializes a new session router
|
|
func NewRouter(b Backend) router.Router {
|
|
r := &sessionRouter{
|
|
backend: b,
|
|
}
|
|
r.initRoutes()
|
|
return r
|
|
}
|
|
|
|
// Routes returns the available routers to the session controller
|
|
func (sr *sessionRouter) Routes() []router.Route {
|
|
return sr.routes
|
|
}
|
|
|
|
func (sr *sessionRouter) initRoutes() {
|
|
sr.routes = []router.Route{
|
|
router.NewPostRoute("/session", sr.startSession),
|
|
}
|
|
}
|