修改保险后端代码,政府前端代码

This commit is contained in:
2025-09-22 17:56:30 +08:00
parent 3143c3ad0b
commit 02a25515a9
206 changed files with 35119 additions and 43073 deletions

View File

@@ -0,0 +1,10 @@
const authController = require('./controllers/authController');
const authMiddleware = require('./middleware/auth');
console.log('authController type:', typeof authController);
console.log('authController.logout type:', typeof authController.logout);
console.log('authMiddleware type:', typeof authMiddleware);
console.log('authMiddleware.authMiddleware type:', typeof authMiddleware.authMiddleware);
console.log('authController keys:', Object.keys(authController));
console.log('authMiddleware keys:', Object.keys(authMiddleware));