logging
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
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';
|
||||
|
||||
// Simple constructor-based DI container.
|
||||
export class AppServices {
|
||||
constructor(
|
||||
public readonly analytics: AnalyticsService,
|
||||
public readonly errors: ErrorReportingService,
|
||||
public readonly cache: CacheService
|
||||
public readonly cache: CacheService,
|
||||
public readonly logger: LoggerService
|
||||
) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user