const app = require("./api/server"); const PORT = process.env.PORT || 3000; app.get('/', (req, res) => res.status(200).send('

Welcome to Meeting Planner Backend API service.

'), ); app.listen(PORT, () => console.log(`Meeting Planner Backend listening at http://localhost:${PORT}`), );