Spaces:
Runtime error
Runtime error
File size: 268 Bytes
46252cd | 1 2 3 4 5 6 7 8 9 10 | import { Global, Module } from '@nestjs/common';
import { HookManager } from './hook-manager.service';
@Global() // Make HookManager available everywhere without importing
@Module({
providers: [HookManager],
exports: [HookManager],
})
export class HooksModule {}
|