mirror of
https://github.com/tnb-labs/panel.git
synced 2026-08-31 01:12:17 +08:00
16 lines
293 B
Go
16 lines
293 B
Go
package bootstrap
|
|
|
|
import (
|
|
"log/slog"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
"github.com/acepanel/panel/v3/internal/taskqueue"
|
|
"github.com/acepanel/panel/v3/pkg/types"
|
|
)
|
|
|
|
// NewRunner 创建任务运行器
|
|
func NewRunner(db *gorm.DB, log *slog.Logger) types.TaskRunner {
|
|
return taskqueue.NewRunner(db, log)
|
|
}
|