express-api-base/middleware/testValidUser.js

10 lines
124 B
JavaScript
Raw Permalink Normal View History

2024-06-28 09:20:46 +00:00
'use strict'
// Dependencies
const testValidUser = async (req, res, next) => {
next()
}
module.exports = testValidUser