mirror of
https://github.com/iptv-org/database.git
synced 2024-12-22 07:50:23 -05:00
11 lines
162 B
TypeScript
11 lines
162 B
TypeScript
|
import Joi from 'joi'
|
||
|
|
||
|
export default {
|
||
|
id: Joi.string()
|
||
|
.regex(/^[a-z]+$/)
|
||
|
.required(),
|
||
|
name: Joi.string()
|
||
|
.regex(/^[A-Z]+$/i)
|
||
|
.required()
|
||
|
}
|