import { InjectionToken, inject } from '@angular/core'; import { AdminUsersGateway } from './admin-users-gateway.interface'; import { AdminUsersApiGateway } from './admin-users-api.gateway'; /** Swap point for docs/backend/TRACK-S-SECURITY-RBAC-CONTRACT.md ยง8. */ export const ADMIN_USERS_GATEWAY = new InjectionToken('ADMIN_USERS_GATEWAY', { providedIn: 'root', factory: () => inject(AdminUsersApiGateway), });