From 20dba29f9c01e6ff4142fc8dd73d7e7c33a42034 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 13 Apr 2021 14:22:16 -0500 Subject: start hw6 --- csci4131/hw6/strap012_hw6/api/utilities.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 csci4131/hw6/strap012_hw6/api/utilities.js (limited to 'csci4131/hw6/strap012_hw6/api/utilities.js') 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 -- cgit v1.2.3