feat(data): 更新 ProviderImpl 以包含新实现

- 在 ProviderImpl 中添加了 NewSysImpl 和 NewTaskImpl
- 此更新扩展了数据层的功能,集成了新的系统和任务相关实现
This commit is contained in:
wuchao 2025-09-17 18:29:26 +08:00
parent 949f80d417
commit 904b67a608
1 changed files with 1 additions and 1 deletions

View File

@ -4,4 +4,4 @@ import (
"github.com/google/wire" "github.com/google/wire"
) )
var ProviderImpl = wire.NewSet(NewSessionImpl) var ProviderImpl = wire.NewSet(NewSessionImpl, NewSysImpl, NewTaskImpl)