Versions in this module Expand all Collapse all v0 v0.0.1 Mar 5, 2026 Changes in this version + type Application interface + Close func() error + Shutdown func(ctx context.Context) error + Start func() error + Use func(handlers ...HandlerFunc) Application + type Context interface + Abort func() + AddHeader func(string, string) + Application func() Application + Body func() (io.ReadCloser, error) + ClientIP func() string + ContentLength func() int64 + ContentType func() string + Context func() context.Context + Cookie func(string) (*http.Cookie, error) + Cookies func() []*http.Cookie + DelHeader func(string) + Get func(string) (any, bool) + GetHeader func(string) string + Header func(string) string + HeaderValues func(string) []string + Headers func() http.Header + IsAbort func() bool + Method func() string + Next func() error + Path func() string + PathValue func(string) string + Protocol func() string + Queries func() url.Values + Query func(string) string + QueryValues func(string) []string + Request func() Request + Resource func() string + Response func() Response + Set func(string, any) any + SetHeader func(string, string) + Status func(int) error + Use func(...HandlerFunc) + Write func([]byte) (int, error) + type HandlerFunc func(Context) error + type HandlersChain []HandlerFunc + type Request interface + Body func() (io.ReadCloser, error) + ClientIP func() string + ContentLength func() int64 + Context func() context.Context + Cookie func(string) (*http.Cookie, error) + Cookies func() []*http.Cookie + Header func(string) string + HeaderValues func(string) []string + Headers func() http.Header + Method func() string + Path func() string + PathValue func(string) string + Protocol func() string + Queries func() url.Values + Query func(string) string + QueryValues func(string) []string + Request func() any + Resource func() string + SetPathValue func(string, string) + SetResource func(string) + type Response interface + AddHeader func(string, string) + DelHeader func(string) + GetHeader func(string) string + Headers func() http.Header + Response func() any + SetHeader func(string, string) + Status func(int) + StatusCode func() int + Write func([]byte) (int, error)