From dde69dde61e57fa929596294f6b4e8f798f5598e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 2 Jul 2026 22:59:40 +0900 Subject: internal/pkg: rename inputs method Inputs is more correct than dependencies in the current terminology. Signed-off-by: Ophestra --- internal/pkg/file.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/pkg/file.go') diff --git a/internal/pkg/file.go b/internal/pkg/file.go index 18b85b82..1b6b02f7 100644 --- a/internal/pkg/file.go +++ b/internal/pkg/file.go @@ -63,8 +63,8 @@ func init() { }) } -// Dependencies returns a nil slice. -func (*fileArtifact) Dependencies() []Artifact { return nil } +// Inputs returns a nil slice. +func (*fileArtifact) Inputs() []Artifact { return nil } // IsExclusive returns false: Cure returns a prepopulated buffer. func (*fileArtifact) IsExclusive() bool { return false } -- cgit v1.3.1