package task_runner

type Runner interface {
	Run(taskID string, ctx map[string]any) (bool, error)
	Restart(taskID string, ctx map[string]any) (bool, error)
	Stop(taskID string, ctx map[string]any) error
}