mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-18 15:31:17 -04:00
8 lines
No EOL
190 B
JavaScript
8 lines
No EOL
190 B
JavaScript
const db = require("../models/auth")
|
|
const indexGet = async (req, res) => {
|
|
const data = await db.allUsers()
|
|
console.dir(data)
|
|
res.render("main")
|
|
}
|
|
|
|
module.exports = { indexGet } |