From ec226deacc7572fb06cb3eb1930ce637754dd09c Mon Sep 17 00:00:00 2001 From: Serhad Aras <78607201+SerhadAras@users.noreply.github.com> Date: Tue, 8 Feb 2022 21:15:07 +0100 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index bc1ebcd..d1091f4 100644 --- a/index.js +++ b/index.js @@ -10,7 +10,7 @@ app.use( ); app.options('*', cors()); -app.get('/', (req, res) => res.send('This api works.')); +app.get('/', (req, res) => res.send('This')); app.listen(process.env.PORT || 3000, function() { console.log('server running on port 3000', '');