Files
sendico/api/pkg/mutil/helpers/taskmanager_factory.go
Stephan D 62a6631b9a
All checks were successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
service backend
2025-11-07 18:35:26 +01:00

12 lines
357 B
Go

package helpers
import (
"github.com/tech/sendico/pkg/mlogger"
"github.com/tech/sendico/pkg/mutil/helpers/internal"
)
// NewTaskManager proxies to the internal implementation while exposing the public interface.
func NewTaskManager(logger mlogger.Logger, projectDB, taskDB any) TaskManager {
return internal.NewTaskManager(logger, projectDB, taskDB)
}