fix: package name

This commit is contained in:
王性驊 2025-03-08 11:08:41 +08:00
parent af8cd86b7a
commit 9980caf1cd
13 changed files with 35 additions and 35 deletions

View File

@ -1,11 +1,11 @@
package senderservicelogic
import (
"app-cloudep-notification-service/pkg/domain/template"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/template"
"context"
"app-cloudep-notification-service/gen_result/pb/notification"
"app-cloudep-notification-service/internal/svc"
"code.30cm.net/digimon/app-cloudep-notification-service/gen_result/pb/notification"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)

View File

@ -1,11 +1,11 @@
package senderservicelogic
import (
"app-cloudep-notification-service/pkg/domain/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/usecase"
"context"
"app-cloudep-notification-service/gen_result/pb/notification"
"app-cloudep-notification-service/internal/svc"
"code.30cm.net/digimon/app-cloudep-notification-service/gen_result/pb/notification"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)

View File

@ -1,11 +1,11 @@
package senderservicelogic
import (
"app-cloudep-notification-service/pkg/domain/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/usecase"
"context"
"app-cloudep-notification-service/gen_result/pb/notification"
"app-cloudep-notification-service/internal/svc"
"code.30cm.net/digimon/app-cloudep-notification-service/gen_result/pb/notification"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)

View File

@ -7,9 +7,9 @@ package server
import (
"context"
"app-cloudep-notification-service/gen_result/pb/notification"
senderservicelogic "app-cloudep-notification-service/internal/logic/senderservice"
"app-cloudep-notification-service/internal/svc"
"code.30cm.net/digimon/app-cloudep-notification-service/gen_result/pb/notification"
senderservicelogic "code.30cm.net/digimon/app-cloudep-notification-service/internal/logic/senderservice"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/svc"
)
type SenderServiceServer struct {

View File

@ -1,11 +1,11 @@
package svc
import (
"app-cloudep-notification-service/internal/config"
cfg "app-cloudep-notification-service/pkg/config"
useD "app-cloudep-notification-service/pkg/domain/usecase"
"app-cloudep-notification-service/pkg/repository"
"app-cloudep-notification-service/pkg/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/config"
cfg "code.30cm.net/digimon/app-cloudep-notification-service/pkg/config"
useD "code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/usecase"
"code.30cm.net/digimon/library-go/errs"
"code.30cm.net/digimon/library-go/errs/code"

View File

@ -5,10 +5,10 @@ import (
"github.com/zeromicro/go-zero/core/logx"
"app-cloudep-notification-service/gen_result/pb/notification"
"app-cloudep-notification-service/internal/config"
senderserviceServer "app-cloudep-notification-service/internal/server/senderservice"
"app-cloudep-notification-service/internal/svc"
"code.30cm.net/digimon/app-cloudep-notification-service/gen_result/pb/notification"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/config"
senderserviceServer "code.30cm.net/digimon/app-cloudep-notification-service/internal/server/senderservice"
"code.30cm.net/digimon/app-cloudep-notification-service/internal/svc"
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/core/service"

View File

@ -1,7 +1,7 @@
package usecase
import (
"app-cloudep-notification-service/pkg/domain/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/repository"
"context"
)

View File

@ -1,7 +1,7 @@
package usecase
import (
"app-cloudep-notification-service/pkg/domain/template"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/template"
"context"
)

View File

@ -1,9 +1,9 @@
package repository
import (
"app-cloudep-notification-service/pkg/config"
"app-cloudep-notification-service/pkg/domain"
"app-cloudep-notification-service/pkg/domain/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/config"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/repository"
"context"
"time"

View File

@ -1,9 +1,9 @@
package repository
import (
"app-cloudep-notification-service/pkg/config"
"app-cloudep-notification-service/pkg/domain"
"app-cloudep-notification-service/pkg/domain/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/config"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/repository"
"context"
"code.30cm.net/digimon/library-go/errs/code"

View File

@ -1,8 +1,8 @@
package repository
import (
"app-cloudep-notification-service/pkg/config"
"app-cloudep-notification-service/pkg/domain/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/config"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/repository"
"context"
pool "code.30cm.net/digimon/library-go/worker_pool"

View File

@ -1,8 +1,8 @@
package usecase
import (
"app-cloudep-notification-service/pkg/domain/repository"
"app-cloudep-notification-service/pkg/domain/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/repository"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/usecase"
"context"
"sort"
"time"

View File

@ -1,8 +1,8 @@
package usecase
import (
"app-cloudep-notification-service/pkg/domain/template"
"app-cloudep-notification-service/pkg/domain/usecase"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/template"
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/usecase"
"context"
"fmt"
)