refactor: reorganize modules and add Linux build tooling

This commit is contained in:
2026-08-09 12:41:08 +08:00
parent 86024fa81d
commit 5cc5fd92ed
1461 changed files with 4054 additions and 4724 deletions

View File

@@ -0,0 +1,27 @@
package impl
import (
"bsm/full/module/base/mgt/internal/config"
"git.apinb.com/bsm-sdk/core/cache/redis"
"git.apinb.com/bsm-sdk/core/with"
cache "github.com/patrickmn/go-cache"
clientv3 "go.etcd.io/etcd/client/v3"
)
var (
RedisService *redis.RedisClient // Redis 客户端服务
EtcdService *clientv3.Client // Etcd 客户端服务
MemorySerice *cache.Cache // 内存缓存服务
)
// NewImpl 初始化各类服务实例
func NewImpl() {
// 初始化内存缓存
MemorySerice = with.Memory(nil)
// 初始化 Redis 缓存
RedisService = with.RedisCache(config.Spec.Cache)
// 初始化数据库服务
WithDatabases(config.Spec.Databases, nil)
// 初始化 Etcd 服务
EtcdService = with.Etcd(config.Spec.Etcd)
}