mirror of
https://github.com/iptv-org/database.git
synced 2024-12-22 07:50:23 -05:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
|
import Joi from 'joi'
|
||
|
|
||
|
export default {
|
||
|
channel: Joi.string()
|
||
|
.regex(/^[A-Za-z0-9]+\.[a-z]{2}$/)
|
||
|
.required(),
|
||
|
ref: Joi.string().uri().required()
|
||
|
}
|