Spaces:
Runtime error
Runtime error
| import { Global, Module } from '@nestjs/common'; | |
| import { HookManager } from './hook-manager.service'; | |
| () // Make HookManager available everywhere without importing | |
| ({ | |
| providers: [HookManager], | |
| exports: [HookManager], | |
| }) | |
| export class HooksModule {} | |