mirror of
https://github.com/iptv-org/database.git
synced 2024-11-09 22:16:38 -05:00
11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
|
const Joi = require('joi')
|
||
|
|
||
|
module.exports = {
|
||
|
id: Joi.string()
|
||
|
.regex(/^[a-z]+$/)
|
||
|
.required(),
|
||
|
name: Joi.string()
|
||
|
.regex(/^[A-Z]+$/i)
|
||
|
.required()
|
||
|
}
|