Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 7s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 4m3s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 20s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Has been cancelled
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Has been cancelled
Build & Deploy KLZ Cables / 🔔 Notifications (push) Has been cancelled
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Has been cancelled
17 lines
687 B
TypeScript
17 lines
687 B
TypeScript
import type { AnalyticsService } from './analytics/analytics-service';
|
|
import type { CacheService } from './cache/cache-service';
|
|
import type { ErrorReportingService } from './errors/error-reporting-service';
|
|
import type { LoggerService } from './logging/logger-service';
|
|
import type { NotificationService } from './notifications/notification-service';
|
|
|
|
// Simple constructor-based DI container.
|
|
export class AppServices {
|
|
constructor(
|
|
public readonly analytics: AnalyticsService,
|
|
public readonly errors: ErrorReportingService,
|
|
public readonly cache: CacheService,
|
|
public readonly logger: LoggerService,
|
|
public readonly notifications: NotificationService,
|
|
) {}
|
|
}
|