chore: added log #4

Merged
y merged 1 commits from project-init into staging 2025-03-25 08:02:56 +00:00

@ -7,6 +7,8 @@ const app: Express = express()
const port = process.env.PORT || 3000
app.get('/', (req: Request, res: Response) => {
console.log(`Request to '/' route received.`)
res.send('Cellar Social API is alive and kicking!')
})