/** * The routing module provides a comprehensive set of components for handling * HTTP routing and request processing. * * This module enables building flexible and type-safe HTTP routing systems with * middleware support, method filtering, and structured request handling. * * @packageDocumentation * * @example * ```ts * import { m, Router } from "@taxum/core/routing"; * * const router = new Router() * .route("/", m.get(() => "Hello World!")); * ``` */ export * from "./handler.js"; export * from "./method-filter.js"; export * from "./method-router.js"; export * from "./path-router.js"; export * from "./router.js";