first commit

This commit is contained in:
Rohit Taware
2023-12-16 11:32:27 -07:00
commit beb65349b6
9 changed files with 1814 additions and 0 deletions

10
models/userModel.js Normal file
View File

@ -0,0 +1,10 @@
// userModel.js
const db = require('../config/dbConfig');
class User {
getAllUsers(callback) {
//db.query('SELECT * FROM users', callback);
}
}
module.exports = new User();