aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw6/strap012_hw6/api/utilities.js
blob: 6b6cec609ffbec855ab167285d218cea02524955 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const express = require('express')
const router = express.Router()

router.get('/contacts', function (req, res) {
    // TODO: Implement code to fetch contacts from the database
});

// TODO: Add implementation for other necessary end-points

module.exports = router;