feat: add homepage url to root response

This commit is contained in:
2026-05-09 22:30:05 +07:00
parent 76802f7c5d
commit 3c2c85c884
+1
View File
@@ -27,6 +27,7 @@ app.post('/:method', async (req, res) => {
app.get('/', (req, res) => {
res.json({
message: 'App Store Scraper',
homepage: 'https://github.com/tiennm99/app-store-scraper-api',
documentation: 'https://github.com/facundoolano/app-store-scraper'
});
});