UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

13 lines (12 loc) 221 B
export class ClientsContainer { clients = []; getAllClients() { return this.clients; } addClient(client) { this.clients.push(client); } clear() { this.clients = []; } }