import express from "express";import * as Traceback from "@traceback/node";const app = express();// Request handler must be the first middleware on the appapp.use(Traceback.Handlers.requestHandler());app.use(Traceback.Handlers.tracingHandler());app.get("/api/user", (req, res) => { res.json({ status: "ok" });});// The error handler must be before any other error middleware and after all controllersapp.use(Traceback.Handlers.errorHandler());app.listen(3000);