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