Merge pull request 'chore: added log' () from project-init into staging

Reviewed-on: 
This commit is contained in:
Otto 2025-03-25 08:02:56 +00:00
commit ab7952af02

@ -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!')
})