10 lines
124 B
JavaScript
10 lines
124 B
JavaScript
|
'use strict'
|
||
|
|
||
|
// Dependencies
|
||
|
|
||
|
const testValidUser = async (req, res, next) => {
|
||
|
next()
|
||
|
}
|
||
|
|
||
|
module.exports = testValidUser
|