(ctx context.Context, dependency Dependency)
| 133 | // DependencyStore is the persistence surface for durable dependency edges. |
| 134 | type DependencyStore interface { |
| 135 | CreateDependency(ctx context.Context, dependency Dependency) error |
| 136 | DeleteDependency(ctx context.Context, taskID string, dependsOnID string) error |
| 137 | ListDependencies(ctx context.Context, taskID string) ([]Dependency, error) |
| 138 | ListDependents(ctx context.Context, dependsOnTaskID string) ([]Dependency, error) |
no outgoing calls