Versions in this module Expand all Collapse all v0 v0.0.1 Mar 6, 2026 Changes in this version + type Context struct + func NewContext(app core.Application, req core.Request, res core.Response) *Context + func (ctx *Context) Abort() + func (ctx *Context) AddHeader(key, value string) + func (ctx *Context) Application() core.Application + func (ctx *Context) Body() (io.ReadCloser, error) + func (ctx *Context) ClientIP() string + func (ctx *Context) ContentLength() int64 + func (ctx *Context) ContentType() string + func (ctx *Context) Context() context.Context + func (ctx *Context) Cookie(name string) (*http.Cookie, error) + func (ctx *Context) Cookies() []*http.Cookie + func (ctx *Context) DelHeader(key string) + func (ctx *Context) Get(key string) (any, bool) + func (ctx *Context) GetHeader(key string) string + func (ctx *Context) Header(key string) string + func (ctx *Context) HeaderValues(key string) []string + func (ctx *Context) Headers() http.Header + func (ctx *Context) IsAbort() bool + func (ctx *Context) Method() string + func (ctx *Context) Next() error + func (ctx *Context) Path() string + func (ctx *Context) PathValue(name string) string + func (ctx *Context) Protocol() string + func (ctx *Context) Queries() url.Values + func (ctx *Context) Query(key string) string + func (ctx *Context) QueryValues(key string) []string + func (ctx *Context) Request() core.Request + func (ctx *Context) Resource() string + func (ctx *Context) Response() core.Response + func (ctx *Context) Set(key string, value any) any + func (ctx *Context) SetHeader(key, value string) + func (ctx *Context) Status(code int) error + func (ctx *Context) Use(handlers ...core.HandlerFunc) + func (ctx *Context) Write(data []byte) (int, error)