making changes to the dependency implementation like those in Commit 57c481e

This commit is contained in:
viljarb
2026-03-20 14:50:02 +01:00
parent c37dae9b1a
commit 85e20c58fe
3 changed files with 7 additions and 64 deletions

View File

@@ -54,8 +54,7 @@ type IssueService interface {
GetIssueComments(ctx context.Context, issueID string) ([]*Comment, error)
GetCommentCounts(ctx context.Context, issueIDs []string) (map[string]int, error)
// Dependency management (thin wrappers over beads dependency API)
AddDependency(ctx context.Context, issueID, dependsOnID string, depType DependencyType, actor string) error
AddDependency(ctx context.Context, dep *Dependency, actor string) error
RemoveDependency(ctx context.Context, issueID, dependsOnID string, actor string) error
GetDependencies(ctx context.Context, issueID string) ([]*Issue, error)
GetDependents(ctx context.Context, issueID string) ([]*Issue, error)