Replace require() with import

This commit is contained in:
freearhey 2024-12-05 14:25:53 +03:00
parent 67cc28a408
commit ea14a63978
16 changed files with 93 additions and 74 deletions

View file

@ -0,0 +1,11 @@
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()
}