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