import { Module } from '@nestjs/common'; import { UsuariosService } from './usuarios.service'; import { PartidasService } from './partidas.service'; @Module({ providers:[UsuariosService, PartidasService], exports:[UsuariosService, PartidasService] }) export class SharedModule {}