UNPKG

notify-io-schemas

Version:
12 lines (8 loc) 249 B
module.exports = (SchemaBuilder) => { const schema = new SchemaBuilder() schema.create('UniqueViolationError', { en: (noun) => `${noun} is already in use!`, zh: (noun) => `${noun}已被占用`, }) return schema }