feat(app): update

This commit is contained in:
Yangtao
2025-11-19 10:23:05 +08:00
parent 7c0ad28e96
commit 337fbce076
62 changed files with 128 additions and 94 deletions

View File

@ -2,7 +2,8 @@ package cache
import (
"context"
logs "servicebase/pkg/log"
logs "gitea.ddegame.cn/open/servicebase/pkg/log"
redis "github.com/redis/go-redis/v9"
"github.com/spf13/viper"

View File

@ -2,8 +2,9 @@ package cache
import (
"errors"
"servicebase/pkg/log"
"time"
"gitea.ddegame.cn/open/servicebase/pkg/log"
)
func Lock(key string) (e error) {

View File

@ -2,11 +2,12 @@ package cache_user
import (
"fmt"
"servicebase/pkg/cache"
"servicebase/pkg/tools"
"strings"
"time"
"gitea.ddegame.cn/open/servicebase/pkg/cache"
"gitea.ddegame.cn/open/servicebase/pkg/tools"
"github.com/anxpp/beego/logs"
"github.com/anxpp/common-utils/str"
)