// Public entry point of the Express-specific tooling shared across any // Express app in this monorepo (currently apps/api). Generic HTTP/Express // infrastructure lives here — domain-specific code (auth, business logic) // stays in the consuming app. // // Framework-agnostic error-handling pieces (ErrorHandlerService, HttpError) // live in `@batch-cooking/error-tools` instead, since they have zero // dependency on Express. `createErrorMiddleware` here is the thin Express // adapter that wires that service into an Express app. export * from "./async-handler.js"; export * from "./error-middleware.js"; export * from "./express-server.js";