Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 6ccacd0

Browse files
committed
Added database framework
1 parent 9d43dc0 commit 6ccacd0

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

server/database/auth.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
module.exports = {
4+
getUser: ({ id }) => {
5+
6+
},
7+
makeUser: ({ id, name, email, division, password }) => {
8+
9+
},
10+
updateUser: ({ id, name, email, division, password }) => {
11+
12+
}
13+
}

server/database/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
auth: require("./auth")
3+
}

0 commit comments

Comments
 (0)