mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
28 lines
643 B
Go Template
28 lines
643 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 }}
|