Versions in this module Expand all Collapse all v3 v3.7.3 Apr 29, 2020 Changes in this version + func NewNoopLogger() echo.Logger + type Option func(*options) + func WithContextFiller(contextFillers ...fillcontext.Filler) Option + func WithCookieKeys(hashKey, blockKey []byte) Option + func WithRedirectToHTTPS(from, to int) Option + func WithRedirectToHost(target string) Option + func WithStatic(mount string, searchPaths ...string) Option + func WithTrustedProxies(cidrs ...string) Option + type Registerer interface + RegisterRoutes func(s *Server) + func Redirect(path string, code int, location string) Registerer + type Server struct + func New(ctx context.Context, opts ...Option) (*Server, error) + func (s *Server) APIRouter() *mux.Router + func (s *Server) DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + func (s *Server) GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + func (s *Server) Group(prefix string, middleware ...echo.MiddlewareFunc) *echo.Group + func (s *Server) HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + func (s *Server) POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + func (s *Server) Prefix(prefix string) *mux.Route + func (s *Server) RootRouter() *mux.Router + func (s *Server) Router() *mux.Router + func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) + func (s *Server) Static(prefix string, fs http.FileSystem)