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

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