1 2 3 4 5 6 7 8 9 10 11 12 | 1x 1x 1x 1x 1x | export const MESSAGES = { APPLICATION_START: `Starting Nest application...`, APPLICATION_READY: `Nest application successfully started`, MICROSERVICE_READY: `Nest microservice successfully started`, UNKNOWN_EXCEPTION_MESSAGE: 'Internal server error', }; export const APP_INTERCEPTOR = 'APP_INTERCEPTOR'; export const APP_PIPE = 'APP_PIPE'; export const APP_GUARD = 'APP_GUARD'; export const APP_FILTER = 'APP_FILTER'; |