mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-29 21:10:55 +00:00
* Add go-chi generator to go-server * Add go-chi configs * Add go-chi generated output * Updated docs * Add some javadocs * Fix import issue * Regen files
18 lines
441 B
Go
18 lines
441 B
Go
/*
|
|
* OpenAPI Petstore
|
|
*
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* API version: 1.0.0
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package petstoreserver
|
|
|
|
//Implementation response defines an error code with the associated body
|
|
type ImplResponse struct {
|
|
Code int
|
|
Headers map[string][]string
|
|
Body interface{}
|
|
}
|