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