chore: change repo

This commit is contained in:
Fu Diwei
2025-06-17 16:27:35 +08:00
parent 205275b52d
commit b8bbbee1e0
369 changed files with 832 additions and 833 deletions

View File

@@ -5,9 +5,9 @@ import (
"fmt"
"log/slog"
"github.com/usual2970/certimate/internal/domain"
"github.com/usual2970/certimate/internal/repository"
"github.com/usual2970/certimate/pkg/core"
"github.com/certimate-go/certimate/internal/domain"
"github.com/certimate-go/certimate/te/internal/repository"
"github.com/certimate-go/certimate/te/pkg/core"
)
type Notifier interface {

View File

@@ -7,10 +7,10 @@ import (
"golang.org/x/sync/errgroup"
"github.com/usual2970/certimate/internal/domain"
"github.com/usual2970/certimate/internal/repository"
"github.com/usual2970/certimate/pkg/core"
xmaps "github.com/usual2970/certimate/pkg/utils/maps"
"github.com/certimate-go/certimate/internal/domain"
"github.com/certimate-go/certimate/te/internal/repository"
"github.com/certimate-go/certimate/te/pkg/core"
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
)
// Deprecated: v0.4.x 将废弃

View File

@@ -4,19 +4,19 @@ import (
"fmt"
"net/http"
"github.com/usual2970/certimate/internal/domain"
"github.com/usual2970/certimate/pkg/core"
pDingTalkBot "github.com/usual2970/certimate/pkg/core/notifier/providers/dingtalkbot"
pDiscordBot "github.com/usual2970/certimate/pkg/core/notifier/providers/discordbot"
pEmail "github.com/usual2970/certimate/pkg/core/notifier/providers/email"
pLarkBot "github.com/usual2970/certimate/pkg/core/notifier/providers/larkbot"
pMattermost "github.com/usual2970/certimate/pkg/core/notifier/providers/mattermost"
pSlackBot "github.com/usual2970/certimate/pkg/core/notifier/providers/slackbot"
pTelegramBot "github.com/usual2970/certimate/pkg/core/notifier/providers/telegrambot"
pWebhook "github.com/usual2970/certimate/pkg/core/notifier/providers/webhook"
pWeComBot "github.com/usual2970/certimate/pkg/core/notifier/providers/wecombot"
xhttp "github.com/usual2970/certimate/pkg/utils/http"
xmaps "github.com/usual2970/certimate/pkg/utils/maps"
"github.com/certimate-go/certimate/internal/domain"
"github.com/certimate-go/certimate/te/pkg/core"
pDingTalkBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/dingtalkbot"
pDiscordBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/discordbot"
pEmail "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/email"
pLarkBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/larkbot"
pMattermost "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/mattermost"
pSlackBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/slackbot"
pTelegramBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/telegrambot"
pWebhook "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/webhook"
pWeComBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/wecombot"
xhttp "github.com/certimate-go/certimate/te/pkg/utils/http"
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
)
type notifierProviderOptions struct {

View File

@@ -3,21 +3,21 @@ package notify
import (
"fmt"
"github.com/usual2970/certimate/internal/domain"
"github.com/usual2970/certimate/pkg/core"
pBark "github.com/usual2970/certimate/pkg/core/notifier/providers/bark"
pDingTalk "github.com/usual2970/certimate/pkg/core/notifier/providers/dingtalkbot"
pEmail "github.com/usual2970/certimate/pkg/core/notifier/providers/email"
pGotify "github.com/usual2970/certimate/pkg/core/notifier/providers/gotify"
pLark "github.com/usual2970/certimate/pkg/core/notifier/providers/larkbot"
pMattermost "github.com/usual2970/certimate/pkg/core/notifier/providers/mattermost"
pPushover "github.com/usual2970/certimate/pkg/core/notifier/providers/pushover"
pPushPlus "github.com/usual2970/certimate/pkg/core/notifier/providers/pushplus"
pServerChan "github.com/usual2970/certimate/pkg/core/notifier/providers/serverchan"
pTelegram "github.com/usual2970/certimate/pkg/core/notifier/providers/telegrambot"
pWebhook "github.com/usual2970/certimate/pkg/core/notifier/providers/webhook"
pWeCom "github.com/usual2970/certimate/pkg/core/notifier/providers/wecombot"
xmaps "github.com/usual2970/certimate/pkg/utils/maps"
"github.com/certimate-go/certimate/internal/domain"
"github.com/certimate-go/certimate/te/pkg/core"
pBark "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/bark"
pDingTalk "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/dingtalkbot"
pEmail "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/email"
pGotify "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/gotify"
pLark "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/larkbot"
pMattermost "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/mattermost"
pPushover "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/pushover"
pPushPlus "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/pushplus"
pServerChan "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/serverchan"
pTelegram "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/telegrambot"
pWebhook "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/webhook"
pWeCom "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/wecombot"
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
)
// Deprecated: v0.4.x 将废弃

View File

@@ -4,8 +4,8 @@ import (
"context"
"fmt"
"github.com/usual2970/certimate/internal/domain"
"github.com/usual2970/certimate/internal/domain/dtos"
"github.com/certimate-go/certimate/internal/domain"
"github.com/certimate-go/certimate/te/internal/domain/dtos"
)
// Deprecated: v0.4.x 将废弃