( text: TemplateStringsArray, module: string, )
| 5 | } from '@nestjs/common/interfaces/version-options.interface'; |
| 6 | |
| 7 | export const MODULE_INIT_MESSAGE = ( |
| 8 | text: TemplateStringsArray, |
| 9 | module: string, |
| 10 | ) => `${module} dependencies initialized`; |
| 11 | |
| 12 | export const ROUTE_MAPPED_MESSAGE = (path: string, method: string | number) => |
| 13 | `Mapped {${path}, ${RequestMethod[method]}} route`; |