From 42fb6efd01e3640ea9d15dc1e0a072c1ea8295b1 Mon Sep 17 00:00:00 2001 From: ewy Date: Wed, 29 Apr 2026 22:34:47 +0200 Subject: fix very embarrassing bug where -a didnt actually work --- runner/stub.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'runner/stub.go') diff --git a/runner/stub.go b/runner/stub.go index 3282fe8..9899b0d 100644 --- a/runner/stub.go +++ b/runner/stub.go @@ -11,6 +11,11 @@ import ( type Stub struct { } +func (s Stub) File(src *model.Source) string { + //TODO implement me + panic("implement me") +} + func (s Stub) Matches(input string) bool { //TODO implement me panic("implement me") @@ -108,7 +113,7 @@ func (h HydratedStub) Icon() string { panic("implement me") } -func (h HydratedStub) Description() string { +func (h HydratedStub) Description(src *model.HydratedSource) string { //TODO implement me panic("implement me") } -- cgit v1.3.1