feat: add homepage url to root response

This commit is contained in:
2026-05-09 22:30:09 +07:00
parent 009a6dc019
commit db451705f1
+1
View File
@@ -27,6 +27,7 @@ app.post('/:method', async (req, res) => {
app.get('/', (req, res) => {
res.json({
message: 'Google Play Scraper',
homepage: 'https://github.com/tiennm99/google-play-scraper-api',
documentation: 'https://github.com/facundoolano/google-play-scraper'
});
});