aboutsummaryrefslogtreecommitdiffstats
path: root/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'index.js')
-rw-r--r--index.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/index.js b/index.js
index 13d321c..4bc738c 100644
--- a/index.js
+++ b/index.js
@@ -3,27 +3,6 @@ const path = require('path');
const app = express();
-const members = [
- {
- id: 1,
- name: 'Garth Brooks',
- email: 'garth.brooks@gmail.com',
- status: 'active'
- },
- {
- id: 2,
- name: 'Bob Evans',
- email: 'bob.evans@gmail.com',
- status: 'inactive'
- },
- {
- id: 3,
- name: 'Alan Jackson',
- email: 'alan.jackson@gmail.com',
- status: 'active'
- }
-];
-
// Gets all members
app.get('/api/members', (req, res) => res.json(members));