mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8f81bb92a3
Signed-off-by: Daniel Nephin <dnephin@docker.com>
26 lines
644 B
Go Template
26 lines
644 B
Go Template
package {{ .Package }}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// DO NOT EDIT THIS FILE
|
|
// This file was generated by `swagger generate operation`
|
|
//
|
|
// See hack/swagger-gen.sh
|
|
// ----------------------------------------------------------------------------
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
context "golang.org/x/net/context"
|
|
|
|
{{ range .DefaultImports }}{{ printf "%q" . }}
|
|
{{ end }}
|
|
{{ range $key, $value := .Imports }}{{ $key }} {{ printf "%q" $value }}
|
|
{{ end }}
|
|
)
|
|
|
|
|
|
{{ range .ExtraSchemas }}
|
|
// {{ .Name }} {{ template "docstring" . }}
|
|
// swagger:model {{ .Name }}
|
|
{{ template "schema" . }}
|
|
{{ end }}
|