10 lines
149 B
TypeScript
10 lines
149 B
TypeScript
|
import { body, param, query } from 'express-validator'
|
||
|
|
||
|
class rootValidator {
|
||
|
checkRootGet() {
|
||
|
return []
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default new rootValidator()
|