mirror of
https://github.com/nestjs/nest.git
synced 2026-02-24 00:02:56 +00:00
8 lines
238 B
TypeScript
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 {} |