chore: change repo
This commit is contained in:
@@ -9,9 +9,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
onepanelsdk "github.com/usual2970/certimate/pkg/sdk3rd/1panel"
|
||||
onepanelsdkv2 "github.com/usual2970/certimate/pkg/sdk3rd/1panel/v2"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
onepanelsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel"
|
||||
onepanelsdkv2 "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel/v2"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/1panel-ssl"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/1panel-ssl"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -12,9 +12,9 @@ import (
|
||||
aliopen "github.com/alibabacloud-go/darabonba-openapi/v2/client"
|
||||
"github.com/alibabacloud-go/tea/tea"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -15,9 +15,9 @@ import (
|
||||
alislb "github.com/alibabacloud-go/slb-20140515/v4/client"
|
||||
"github.com/alibabacloud-go/tea/tea"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
@@ -105,7 +105,7 @@ func (m *SSLManagerProvider) Upload(ctx context.Context, certPEM string, privkey
|
||||
certName := fmt.Sprintf("certimate_%d", time.Now().UnixMilli())
|
||||
|
||||
// 去除证书和私钥内容中的空白行,以符合阿里云 API 要求
|
||||
// REF: https://github.com/usual2970/certimate/issues/326
|
||||
// REF: https://github.com/certimate-go/certimate/te/issues/326
|
||||
re := regexp.MustCompile(`(?m)^\s*$\n?`)
|
||||
certPEM = strings.TrimSpace(re.ReplaceAllString(certPEM, ""))
|
||||
privkeyPEM = strings.TrimSpace(re.ReplaceAllString(privkeyPEM, ""))
|
||||
|
||||
@@ -12,8 +12,8 @@ import (
|
||||
awsacm "github.com/aws/aws-sdk-go-v2/service/acm"
|
||||
"golang.org/x/exp/slices"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -12,8 +12,8 @@ import (
|
||||
awscred "github.com/aws/aws-sdk-go-v2/credentials"
|
||||
awsiam "github.com/aws/aws-sdk-go-v2/service/iam"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -14,9 +14,9 @@ import (
|
||||
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
|
||||
"github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
azenv "github.com/usual2970/certimate/pkg/sdk3rd/azure/env"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
azenv "github.com/certimate-go/certimate/te/pkg/sdk3rd/azure/env"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/azure-keyvault"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/azure-keyvault"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -8,9 +8,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
bdsdk "github.com/usual2970/certimate/pkg/sdk3rd/baiducloud/cert"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
bdsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/baiducloud/cert"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/baiducloud-cert"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/baiducloud-cert"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -13,8 +13,8 @@ import (
|
||||
|
||||
bytepluscdn "github.com/byteplus-sdk/byteplus-sdk-golang/service/cdn"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyunao "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/ao"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyunao "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/ao"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-ao"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-ao"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyuncdn "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/cdn"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyuncdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/cdn"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-cdn"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-cdn"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -10,10 +10,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyuncms "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/cms"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyuncms "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/cms"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-cms"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-cms"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
|
||||
"github.com/google/uuid"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyunelb "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/elb"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyunelb "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/elb"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-elb"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-elb"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyunicdn "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/icdn"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyunicdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/icdn"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-icdn"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-icdn"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
ctyunlvdn "github.com/usual2970/certimate/pkg/sdk3rd/ctyun/lvdn"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
ctyunlvdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/lvdn"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ctcccloud-lvdn"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-lvdn"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -7,8 +7,8 @@ import (
|
||||
"log/slog"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
dogesdk "github.com/usual2970/certimate/pkg/sdk3rd/dogecloud"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
dogesdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/dogecloud"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -10,8 +10,8 @@ import (
|
||||
"github.com/G-Core/gcorelabscdn-go/gcore/provider"
|
||||
"github.com/G-Core/gcorelabscdn-go/sslcerts"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
gcoresdk "github.com/usual2970/certimate/pkg/sdk3rd/gcore"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
gcoresdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/gcore"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -16,9 +16,9 @@ import (
|
||||
hciammodel "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/iam/v3/model"
|
||||
hciamregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/iam/v3/region"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -12,9 +12,9 @@ import (
|
||||
hcscmmodel "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/scm/v3/model"
|
||||
hcscmregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/scm/v3/region"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -16,9 +16,9 @@ import (
|
||||
hcwafmodel "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/waf/v1/model"
|
||||
hcwafregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/waf/v1/region"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -15,8 +15,8 @@ import (
|
||||
jdsslclient "github.com/jdcloud-api/jdcloud-sdk-go/services/ssl/client"
|
||||
"golang.org/x/exp/slices"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/jdcloud-ssl"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/jdcloud-ssl"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,9 +9,9 @@ import (
|
||||
|
||||
"github.com/qiniu/go-sdk/v7/auth"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
qiniusdk "github.com/usual2970/certimate/pkg/sdk3rd/qiniu"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
qiniusdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/qiniu"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -7,9 +7,9 @@ import (
|
||||
"log/slog"
|
||||
"strings"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
rainyunsdk "github.com/usual2970/certimate/pkg/sdk3rd/rainyun"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
rainyunsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/rainyun"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/rainyun-sslcenter"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/rainyun-sslcenter"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common"
|
||||
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/profile"
|
||||
tcssl "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ssl/v20191205"
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -15,9 +15,9 @@ import (
|
||||
"github.com/ucloud/ucloud-sdk-go/ucloud"
|
||||
ucloudauth "github.com/ucloud/ucloud-sdk-go/ucloud/auth"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
usslsdk "github.com/usual2970/certimate/pkg/sdk3rd/ucloud/ussl"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
usslsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/ucloud/ussl"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/ucloud-ussl"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ucloud-ussl"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -6,8 +6,8 @@ import (
|
||||
"fmt"
|
||||
"log/slog"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
upyunsdk "github.com/usual2970/certimate/pkg/sdk3rd/upyun/console"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
upyunsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/upyun/console"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/upyun-ssl"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/upyun-ssl"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -14,8 +14,8 @@ import (
|
||||
vecdn "github.com/volcengine/volc-sdk-golang/service/cdn"
|
||||
ve "github.com/volcengine/volcengine-go-sdk/volcengine"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,8 +9,8 @@ import (
|
||||
ve "github.com/volcengine/volcengine-go-sdk/volcengine"
|
||||
vesession "github.com/volcengine/volcengine-go-sdk/volcengine/session"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
veccsdk "github.com/usual2970/certimate/pkg/sdk3rd/volcengine/certcenter"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
veccsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/volcengine/certcenter"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/volcengine-certcenter"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/volcengine-certcenter"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -11,8 +11,8 @@ import (
|
||||
velive "github.com/volcengine/volc-sdk-golang/service/live/v20230101"
|
||||
ve "github.com/volcengine/volcengine-go-sdk/volcengine"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/usual2970/certimate/pkg/core"
|
||||
wangsusdk "github.com/usual2970/certimate/pkg/sdk3rd/wangsu/certificate"
|
||||
xcert "github.com/usual2970/certimate/pkg/utils/cert"
|
||||
xtypes "github.com/usual2970/certimate/pkg/utils/types"
|
||||
"github.com/certimate-go/certimate/pkg/core"
|
||||
wangsusdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/wangsu/certificate"
|
||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
||||
)
|
||||
|
||||
type SSLManagerProviderConfig struct {
|
||||
|
||||
@@ -9,7 +9,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
provider "github.com/usual2970/certimate/pkg/core/ssl-manager/providers/wangsu-certificate"
|
||||
provider "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/wangsu-certificate"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
Reference in New Issue
Block a user