Versions in this module Expand all Collapse all v1 v1.13.2 Jun 4, 2023 Changes in this version + func GetSwagger() (swagger *openapi3.T, err error) + func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error) + func RegisterHandlers(router EchoRouter, si ServerInterface) + func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string) + type EchoRouter interface + CONNECT func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + DELETE func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + GET func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + HEAD func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + OPTIONS func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + PATCH func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + POST func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + PUT func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + TRACE func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + type PetStore struct + Lock sync.Mutex + NextId int64 + Pets map[int64]models.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 models.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