From 3c2c85c8842b0fe0f99f3ee3019bc489efd8574a Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 9 May 2026 22:30:05 +0700 Subject: [PATCH] feat: add homepage url to root response --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index c9b719d..cd274dd 100644 --- a/src/index.js +++ b/src/index.js @@ -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' }); });