1 2 3 4 5 6 7 8 9 10 | /* eslint-disable max-len */ export default { readSideForbiddenOperation: operation => `'${operation}' operation is not allowed on the read side`, alreadyInitialized: 'The read model storage is already initialized' }; /* eslint-enable max-len */ |