Files
checkcle/application/src/services/sslCertificateService.ts
T
2025-05-16 22:21:39 +08:00

30 lines
714 B
TypeScript

// This file re-exports all SSL certificate related services for backward compatibility
import {
checkSSLCertificate,
fetchSSLCertificates,
addSSLCertificate,
checkAndUpdateCertificate
} from './ssl';
import { determineSSLStatus } from './ssl/sslStatusUtils';
// Import from the new refactored location
import {
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck,
testCertificateNotification
} from './ssl/notification';
export {
checkSSLCertificate,
determineSSLStatus,
fetchSSLCertificates,
addSSLCertificate,
checkAndUpdateCertificate,
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck,
testCertificateNotification
};