Versions in this module Expand all Collapse all v1 v1.9.2 Oct 22, 2019 v1.9.1 Oct 22, 2019 Changes in this version + func GetSwagger() (*openapi3.Swagger, error) + func RegisterHandlers(router runtime.EchoRouter, si ServerInterface) + type AddPetJSONRequestBody addPetJSONBody + type Error struct + Code int32 + Message string + type FindPetsParams struct + Limit *int32 + Tags *[]string + type NewPet struct + Name string + Tag *string + type Pet struct + Id int64 + type PetStore struct + Lock sync.Mutex + NextId int64 + Pets map[int64]Pet + func NewPetStore() *PetStore + func (p *PetStore) AddPet(ctx echo.Context) error + func (p *PetStore) DeletePet(ctx echo.Context, id int64) error + func (p *PetStore) FindPetById(ctx echo.Context, petId int64) error + func (p *PetStore) FindPets(ctx echo.Context, params FindPetsParams) error + type ServerInterface interface + AddPet func(ctx echo.Context) error + DeletePet func(ctx echo.Context, id int64) error + FindPetById func(ctx echo.Context, id int64) error + FindPets func(ctx echo.Context, params FindPetsParams) error + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) AddPet(ctx echo.Context) error + func (w *ServerInterfaceWrapper) DeletePet(ctx echo.Context) error + func (w *ServerInterfaceWrapper) FindPetById(ctx echo.Context) error + func (w *ServerInterfaceWrapper) FindPets(ctx echo.Context) error