We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08dc816 commit daf26deCopy full SHA for daf26de
backend/biz/host/handler/v1/internal.go
@@ -52,6 +52,7 @@ func NewInternalHostHandler(i *do.Injector) (*InternalHostHandler, error) {
52
cache: cache.New(15*time.Minute, 10*time.Minute),
53
hostUsecase: do.MustInvoke[domain.HostUsecase](i),
54
taskConns: do.MustInvoke[*ws.TaskConn](i),
55
+ taskLifecycle: do.MustInvoke[*lifecycle.Manager[uuid.UUID, consts.TaskStatus, lifecycle.TaskMetadata]](i),
56
projectUsecase: do.MustInvoke[domain.ProjectUsecase](i),
57
tokenProvider: do.MustInvoke[*gituc.TokenProvider](i),
58
}
0 commit comments