import { createApp } from "./app.js"; import { config } from "./config/index.js"; const app = createApp(); app.listen(config.port, () => { process.stdout.write(`API listening on http://localhost:${config.port}\n`); });