diff options
Diffstat (limited to 'csci4131/hw6/strap012_hw6/api/utilities.js')
-rw-r--r-- | csci4131/hw6/strap012_hw6/api/utilities.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/csci4131/hw6/strap012_hw6/api/utilities.js b/csci4131/hw6/strap012_hw6/api/utilities.js new file mode 100644 index 0000000..6b6cec6 --- /dev/null +++ b/csci4131/hw6/strap012_hw6/api/utilities.js @@ -0,0 +1,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;
\ No newline at end of file |