(ctx context.Context, run Run)
| 163 | type RunStore interface { |
| 164 | CreateTaskRun(ctx context.Context, run Run) error |
| 165 | UpdateTaskRun(ctx context.Context, run Run) error |
| 166 | GetTaskRun(ctx context.Context, id string) (Run, error) |
| 167 | ListTaskRuns(ctx context.Context, query RunQuery) ([]Run, error) |
| 168 | ListTaskRunsByStatus(ctx context.Context, statuses []RunStatus) ([]Run, error) |
no outgoing calls