diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-29 22:34:47 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-29 22:34:47 +0200 |
| commit | 42fb6efd01e3640ea9d15dc1e0a072c1ea8295b1 (patch) | |
| tree | ebf351b66f0288c8e9f879c529a962b025bebf15 /runner/stub.go | |
| parent | 03a31799a872385d821130f46942fc13dae76774 (diff) | |
fix very embarrassing bug where -a didnt actually work
Diffstat (limited to 'runner/stub.go')
| -rw-r--r-- | runner/stub.go | 7 |
1 files changed, 6 insertions, 1 deletions
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") } |
