11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { VendorModule } from '../../vendor';
|
||
|
|
import { EventBusService } from './event-bus.service';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [VendorModule],
|
||
|
|
providers: [EventBusService],
|
||
|
|
exports: [EventBusService],
|
||
|
|
})
|
||
|
|
export class EventBusModule {}
|