Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | /** * # Services Module * * This module exports all service classes and functions used in the CIA Compliance Manager. * * ## Business Perspective * Services implement core business logic for security assessment, compliance mapping, * and business impact analysis, centralizing critical functionality. 💼 * * ## Technical Perspective * Centralized service exports simplify imports and promote service reuse. * * @packageDocumentation */ // Service Factories export { createBusinessImpactService } from "./businessImpactService"; export { createCIAContentService } from "./ciaContentService"; export { createComplianceService } from "./complianceService"; export { createTechnicalImplementationService } from "./technicalImplementationService"; // Service Classes export { BaseService } from "./BaseService"; export { BusinessImpactService } from "./businessImpactService"; // Export CIA content service export { CIAContentService, default as defaultCIAContentService, getInformationSensitivity, getRiskBadgeVariant, getROIEstimate, getValuePoints, } from "./ciaContentService"; // Export compliance service adapter export { ComplianceServiceAdapter } from "./ComplianceServiceAdapter"; // Export security metrics service export { createSecurityMetricsService, SecurityMetricsService, } from "./securityMetricsService"; // Export security resource service export { createSecurityResourceService, SecurityResourceService, } from "./securityResourceService"; // Update to import SecurityResource from the correct location import { SecurityResource } from "../types/securityResources"; // Export SecurityResource type export type { SecurityResource }; |