scripts/middleware/testValidUser.js

10 lines
124 B
JavaScript
Raw Normal View History

2024-12-11 21:09:37 +00:00
'use strict'
// Dependencies
const testValidUser = async (req, res, next) => {
next()
}
module.exports = testValidUser