align naming convention with x-go-name Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com> Upstream-commit: 8e7f9afa471c2be079f2c8897cf3b87e7f60544e Component: engine
27 lines
651 B
Go Template
27 lines
651 B
Go Template
package {{ .Package }}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// DO NOT EDIT THIS FILE
|
|
// This file was generated by `swagger generate operation`
|
|
//
|
|
// See hack/generate-swagger-api.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 }} {{ comment .Description }}
|
|
// swagger:model {{ .Name }}
|
|
{{ template "schema" . }}
|
|
{{ end }}
|