Files
nest/example/modules/shared/shared.module.ts
2017-05-01 14:04:25 +02:00

8 lines
238 B
TypeScript

import { Module } from '../../../src/common/utils/decorators/module.decorator';
import { ChatGateway } from '../users/chat.gateway';
@Module({
components: [ ChatGateway ],
exports: [ ChatGateway ],
})
export class SharedModule {}