scripts/middleware/testValidUser.js
2024-12-11 21:09:37 +00:00

10 lines
124 B
JavaScript

'use strict'
// Dependencies
const testValidUser = async (req, res, next) => {
next()
}
module.exports = testValidUser