feat: 实现一些用户接口

This commit is contained in:
2024-01-15 00:03:15 +08:00
parent d2a6d7fd58
commit b37c8cbdd9
9 changed files with 1031 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "server",
"version": "1.0.0",
"description": "labplus server",
"type": "module",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js"
},
"keywords": [
"labplus"
],
"author": "hbk01",
"license": "GPL-3.0-or-later",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^8.0.3"
}
}