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

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

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

module.exports = router;