import { createApp, json } from "as-facile-js"; import { healthRouter } from "./modules/health/health.route"; const app = createApp(); app.use(json()); app.use(healthRouter); app.listen(3000, () => { console.log("Server running on http://localhost:3000"); });