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>
16 lines
591 B
Go
16 lines
591 B
Go
// +build experimental
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker/api/server/httputils"
|
|
"github.com/docker/docker/api/server/router"
|
|
checkpointrouter "github.com/docker/docker/api/server/router/checkpoint"
|
|
pluginrouter "github.com/docker/docker/api/server/router/plugin"
|
|
"github.com/docker/docker/daemon"
|
|
"github.com/docker/docker/plugin"
|
|
)
|
|
|
|
func addExperimentalRouters(routers []router.Router, d *daemon.Daemon, decoder httputils.ContainerDecoder) []router.Router {
|
|
return append(routers, checkpointrouter.NewRouter(d, decoder), pluginrouter.NewRouter(plugin.GetManager()))
|
|
}
|