16 lines
271 B
Go
Raw Normal View History

2026-03-08 18:05:17 +08:00
package taskdebug
import (
"context"
"devops/server/apps/task"
)
// 实现一个 task_debug 任务
type TaskDebugRunner struct{}
func (t *TaskDebugRunner) Run(ctx context.Context, spec *task.TaskSpec) (*task.Task, error) {
// 使用脚本执行
return nil, nil
}