Versions in this module Expand all Collapse all v0 v0.1.0 Jul 3, 2026 Changes in this version + func Delete[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func Get[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func Head[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func NewHTTPError(status int, detail string) error + func Options[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func Patch[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func Post[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + func Put[In any, Out any](router Router, path string, handler Handler[In, Out], opts ...OperationOption) + type App = core.App + func New(config Config) *App + type Attachment = core.Attachment + type Config = core.Config + type Dependency = core.Dependency[T] + func APIKeyHeaderDep(name, header string) Dependency[string] + func APIKeyQueryDep(name, query string) Dependency[string] + func BearerTokenDep(name string) Dependency[string] + func Dep[T any](name string, resolver func(context.Context, *http.Request) (T, error)) Dependency[T] + type DependencyResolver = core.DependencyResolver + type FieldError = core.FieldError + type File = core.File + type Group = core.Group + type HTML = core.HTML + type HTTPError = core.HTTPError + type Handler = core.Handler[In, Out] + type Middleware = core.Middleware + type NoContent = core.NoContent + type Operation = core.Operation + type OperationOption = core.OperationOption + func Description(description string) OperationOption + func OperationID(id string) OperationOption + func Require(dependencies ...DependencyResolver) OperationOption + func Security(names ...string) OperationOption + func Status(status int) OperationOption + func Summary(summary string) OperationOption + func Tags(tags ...string) OperationOption + func Use(middlewares ...Middleware) OperationOption + type Problem = core.Problem + type Redirect = core.Redirect + type Response = core.Response[T] + type Router = core.Router + type SSE = core.SSE + type SSEEvent = core.SSEEvent + type SecurityScheme = core.SecurityScheme + func APIKeyCookie(name, cookie string) SecurityScheme + func APIKeyHeader(name, header string) SecurityScheme + func APIKeyQuery(name, query string) SecurityScheme + func BasicAuth(name string) SecurityScheme + func BearerAuth(name string) SecurityScheme + type Stream = core.Stream + type Text = core.Text + type Validator = core.Validator