Versions in this module Expand all Collapse all v0 v0.2.0 Mar 27, 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 Api struct + func (a *Api) ConvertNumberToWord(ctx echo.Context, params ConvertNumberToWordParams) error + func (a *Api) ConvertWordsToNumber(ctx echo.Context, params ConvertWordsToNumberParams) error + 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 ServerInterface interface + ConvertNumberToWord func(ctx echo.Context, params ConvertNumberToWordParams) error + ConvertWordsToNumber func(ctx echo.Context, params ConvertWordsToNumberParams) error + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) ConvertNumberToWord(ctx echo.Context) error + func (w *ServerInterfaceWrapper) ConvertWordsToNumber(ctx echo.Context) error