express-api-base/middleware/testValidUser.js
2024-06-28 11:20:46 +02:00

10 lines
124 B
JavaScript

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