import { InjectionToken, inject } from '@angular/core'; import { AdminNotificationsGateway } from './admin-notifications-gateway.interface'; import { AdminNotificationsLocalGateway } from './admin-notifications-local.gateway'; /** Swap point for docs/backend/PHASE-2-ORDERS-NOTIFICATIONS-CONTRACT.md ยง6. */ export const ADMIN_NOTIFICATIONS_GATEWAY = new InjectionToken('ADMIN_NOTIFICATIONS_GATEWAY', { providedIn: 'root', factory: () => inject(AdminNotificationsLocalGateway), });