mirror of
https://github.com/moby/moby.git
synced 2026-08-03 22:51:03 +00:00
These comments were added to enforce using the correct import path for
our packages ("github.com/docker/docker", not "github.com/moby/moby").
However, when working in go module mode (not GOPATH / vendor), they have
no effect, so their impact is limited.
Remove these imports in preparation of migrating our code to become an
actual go module.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
30 lines
627 B
Go
30 lines
627 B
Go
package 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),
|
|
}
|
|
}
|