Documentation
¶
Index ¶
- Variables
- func Bind(s StartInterface) error
- func Host(hostname string) (*host, error)
- func IsDefaultHostNotFound(err error) bool
- func IsHostAlreadyDefined(err error) bool
- func IsHostNotFound(err error) bool
- func IsRouteNotFound(err error) bool
- func Name(routeName string, params ...interface{}) (string, error)
- func Register(hostHandler ...HostHandler) error
- type HostConfiguration
- type HostHandler
- type RouteInterface
- type RoutePathInterface
- type Start
- type StartAutoTLS
- type StartH2CServer
- type StartInterface
- type StartListener
- type StartServer
- type StartTLS
Constants ¶
This section is empty.
Variables ¶
Functions ¶
func IsDefaultHostNotFound ¶
func IsHostAlreadyDefined ¶
func IsHostNotFound ¶
func IsRouteNotFound ¶
Types ¶
type HostConfiguration ¶
type HostConfiguration struct { Debug bool HideBanner bool DisableHTTP2 bool ReadTimeout int64 WriteTimeout int64 Listener net.Listener Validator echo.Validator Binder echo.Binder Renderer echo.Renderer IPExtractor echo.IPExtractor Middleware []echo.MiddlewareFunc HTTPErrorHandler func(err error, c echo.Context) }
Host configuration
type HostHandler ¶
type HostHandler struct { Hostname string Config *HostConfiguration Route []RouteInterface }
The host handler
type RouteInterface ¶
type RouteInterface interface {
Create(RoutePathInterface)
}
Route Implementation
type RoutePathInterface ¶
type RoutePathInterface interface { Group(group string, f func(rg RoutePathInterface), m ...echo.MiddlewareFunc) Get(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) *routePath Post(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) *routePath Put(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) *routePath Patch(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) *routePath Delete(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) *routePath Any(prefix string, f echo.HandlerFunc, m ...echo.MiddlewareFunc) []*routePath }
Route Path Implementation
type StartAutoTLS ¶
type StartAutoTLS struct {
Port string
}
Start HTTP with auto creating TLS
func (StartAutoTLS) Start ¶
func (s StartAutoTLS) Start(e *echo.Echo) error
type StartH2CServer ¶
Start HTTP 2
func (StartH2CServer) Start ¶
func (s StartH2CServer) Start(e *echo.Echo) error
type StartInterface ¶
type StartInterface interface {
Start(e *echo.Echo) error
}
Start Implementation
type StartListener ¶
type StartListener struct { }
If echo has custom Listener, run this one
func (StartListener) Start ¶
func (s StartListener) Start(e *echo.Echo) error
type StartServer ¶
Start HTTP with custom configuration HTTP Server
func (StartServer) Start ¶
func (s StartServer) Start(e *echo.Echo) error
Click to show internal directories.
Click to hide internal directories.