/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/microservices/container.ts
17 строк
324 B
Kamil Myśliwiec
feat(microservices): add status, unwrap, on, and other features
15 ноя 2024, 12:03
Не верифицирован
15 ноя 2024, 12:03
3dfc7fc
Код
Авторство
О чём код?
import { ClientProxy } from './client/client-proxy'; export class ClientsContainer { private clients: ClientProxy[] = []; public getAllClients(): ClientProxy[] { return this.clients; } public addClient(client: ClientProxy) { this.clients.push(client); } public clear() { this.clients = []; } }