mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d8fef66b03
Signed-off-by: boucher <rboucher@gmail.com>
28 lines
668 B
Go
28 lines
668 B
Go
package checkpoint
|
|
|
|
import (
|
|
"github.com/docker/docker/api/server/httputils"
|
|
"github.com/docker/docker/api/server/router"
|
|
)
|
|
|
|
// checkpointRouter is a router to talk with the checkpoint controller
|
|
type checkpointRouter struct {
|
|
backend Backend
|
|
decoder httputils.ContainerDecoder
|
|
routes []router.Route
|
|
}
|
|
|
|
// NewRouter initializes a new checkpoint router
|
|
func NewRouter(b Backend, decoder httputils.ContainerDecoder) router.Router {
|
|
r := &checkpointRouter{
|
|
backend: b,
|
|
decoder: decoder,
|
|
}
|
|
r.initRoutes()
|
|
return r
|
|
}
|
|
|
|
// Routes returns the available routers to the checkpoint controller
|
|
func (r *checkpointRouter) Routes() []router.Route {
|
|
return r.routes
|
|
}
|