mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
20 lines
634 B
JavaScript
20 lines
634 B
JavaScript
import { UploadCertToAliyun } from './aliyun/upload-to-aliyun/index.js'
|
|
import { DeployCertToAliyunCDN } from './aliyun/deploy-to-cdn/index.js'
|
|
|
|
import { UploadCertToTencent } from './tencent/upload-to-tencent/index.js'
|
|
|
|
import { DeployCertToTencentCDN } from './tencent/deploy-to-cdn/index.js'
|
|
|
|
import { DeployCertToTencentCLB } from './tencent/deploy-to-clb/index.js'
|
|
|
|
import { DeployCertToTencentTKEIngress } from './tencent/deploy-to-tke-ingress/index.js'
|
|
|
|
export default [
|
|
UploadCertToAliyun,
|
|
DeployCertToAliyunCDN,
|
|
UploadCertToTencent,
|
|
DeployCertToTencentTKEIngress,
|
|
DeployCertToTencentCDN,
|
|
DeployCertToTencentCLB
|
|
]
|