This commit is contained in:
2025-04-14 15:28:51 +08:00
parent f100427f8b
commit 371b89ee8d
93 changed files with 3757 additions and 1038 deletions

View File

@@ -31,12 +31,12 @@ type ProjectExpansion interface {
type projectBiz struct {
store db.Store
redis redis.IRedis
redis redis.RedisCache
}
var _ ProjectBiz = (*projectBiz)(nil)
func New(store db.Store, redis redis.IRedis) *projectBiz {
func New(store db.Store, redis redis.RedisCache) *projectBiz {
return &projectBiz{
store: store,
redis: redis,