mirror of
https://github.com/iptv-org/database.git
synced 2024-11-10 14:26:39 -05:00
9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
|
const Joi = require('joi')
|
||
|
|
||
|
module.exports = {
|
||
|
channel: Joi.string()
|
||
|
.regex(/^[A-Za-z0-9]+\.[a-z]{2}$/)
|
||
|
.required(),
|
||
|
ref: Joi.string().uri().required()
|
||
|
}
|