Skip to content

Instantly share code, notes, and snippets.

@WitkowskiMichau
Created April 25, 2021 20:24
Show Gist options
  • Save WitkowskiMichau/1ec97f5b38bc9840911717b689f57191 to your computer and use it in GitHub Desktop.
Save WitkowskiMichau/1ec97f5b38bc9840911717b689f57191 to your computer and use it in GitHub Desktop.
module.exports = (app, db) => {
app.get('/users', (req, res) => {
res.json({
meta: {},
items: db.get('users').value()
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment