Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Last active May 30, 2021 05:15
Show Gist options
  • Save moonformeli/5934da06b59f0e96336232c5e683e61a to your computer and use it in GitHub Desktop.
Save moonformeli/5934da06b59f0e96336232c5e683e61a to your computer and use it in GitHub Desktop.
app.get('/movie', async (req, res) => {
const { id } = req.query;
const movie: MoviePayload = await getMovieById(id);
res.json(movie);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment