mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
16 lines
421 B
Go
16 lines
421 B
Go
package session // import "github.com/docker/docker/api/server/router/session"
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/docker/docker/errdefs"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func (sr *sessionRouter) startSession(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
|
err := sr.backend.HandleHTTPRequest(ctx, w, r)
|
|
if err != nil {
|
|
return errdefs.InvalidParameter(err)
|
|
}
|
|
return nil
|
|
}
|