12 lines
357 B
Go
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)
|
|
}
|