service backend
This commit is contained in:
11
api/pkg/mutil/helpers/taskmanager_factory.go
Normal file
11
api/pkg/mutil/helpers/taskmanager_factory.go
Normal file
@@ -0,0 +1,11 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user