chore: added log

This commit is contained in:
nostrdev-com 2025-03-25 11:02:05 +03:00
parent 331dcc53e7
commit eec553ef16

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