Versions in this module Expand all Collapse all v2 v2.1.18 Nov 3, 2022 Changes in this version + func RegisterHandlers(router EchoRouter, si ServerInterface, m ...echo.MiddlewareFunc) + 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 Entity struct + IntField int + IntFieldNullable *int + ObjectField *NestedEntity + StringField string + StringFieldNullable *string + type FooResponse struct + Code int + JSON200 *Entity + type NestedEntity struct + BoolField bool + BoolFieldNullable *bool + NumberField float32 + NumberFieldNullable *float32 + type Response = Entity + type ServerInterface interface + Foo func(ctx echo.Context) (resp *FooResponse, err error) + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) Foo(ctx echo.Context) error