Created
August 4, 2021 23:03
-
-
Save hiranya911/8e5ec320ac2bb116d6a7685c83a18895 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const app = express(); | |
app.get('/quotes', async (req, res) => { | |
const data = await callExternalService(); | |
res.json(data); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment