mirror of
https://github.com/iptv-org/database.git
synced 2024-12-22 07:50:23 -05:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
|
import Joi from 'joi'
|
||
|
|
||
|
export default {
|
||
|
country: Joi.string()
|
||
|
.regex(/^[A-Z]{2}$/)
|
||
|
.required(),
|
||
|
name: Joi.string().required(),
|
||
|
code: Joi.string()
|
||
|
.regex(/^[A-Z]{2}-[A-Z0-9]{1,3}$/)
|
||
|
.required()
|
||
|
}
|