1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

move /session api endpoint out of experimental

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
This commit is contained in:
Andrew Hsu 2018-08-21 22:43:34 +00:00
parent 239047c2d3
commit 01c9e7082e

View file

@ -24,6 +24,6 @@ func (r *sessionRouter) Routes() []router.Route {
func (r *sessionRouter) initRoutes() { func (r *sessionRouter) initRoutes() {
r.routes = []router.Route{ r.routes = []router.Route{
router.Experimental(router.NewPostRoute("/session", r.startSession)), router.NewPostRoute("/session", r.startSession),
} }
} }