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