mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 11:40:01 -04:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
import Joi from 'joi'
|
|
|
|
export default {
|
|
code: Joi.string()
|
|
.regex(/^[a-z]{3}$/)
|
|
.required(),
|
|
name: Joi.string().required()
|
|
}
|