forked from loafle/openapi-generator-original
* fix imports with go generation * Wrong copy over * Missing new line * tab vs space * Fix new line between router and std go libs * Add both use case, add samples to CI validation * Update samples
19 lines
472 B
Go
19 lines
472 B
Go
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
/*
|
|
* Simple no path and body param spec
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 1.0.0
|
|
*/
|
|
|
|
package petstoreserver
|
|
|
|
// ImplResponse defines an implementation response with error code and the associated body
|
|
type ImplResponse struct {
|
|
Code int
|
|
Headers map[string][]string
|
|
Body interface{}
|
|
}
|