const User = require("../models/user.model"); exports.getAllUsers = async (req, res) => { const users = await User.getAllUsers(); res.json(users); };