@mojaloop/central-services-shared
Version:
Shared code for mojaloop central services
28 lines (23 loc) • 420 B
JavaScript
const responseCode = {
success: 200,
gatewayTimeout: 502
}
const statusEnum = {
OK: 'OK',
DOWN: 'DOWN'
}
const serviceName = {
participantEndpointService: 'participantEndpointService',
smtpServer: 'smtpServer',
datastore: 'datastore',
broker: 'broker',
sidecar: 'sidecar',
cache: 'cache',
proxyCache: 'proxyCache'
}
module.exports = {
responseCode,
serviceName,
statusEnum
}