import { PlatformUsersService } from '../../../api/api-services/platform-users.service'; import { inject, Injectable } from '@angular/core'; import { Observable } from 'rxjs'; @Injectable({ providedIn: 'root' }) export class UsersService { private readonly platformUsersService = inject(PlatformUsersService); getUsersList$(): Observable { return this.platformUsersService.get(); } }