summaryrefslogtreecommitdiff
path: root/runner
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-22 17:25:40 +0200
committerewy <ewy0@protonmail.com>2026-04-22 17:25:40 +0200
commitee481fa406bb685a16d8b568fca0c9f592c06180 (patch)
treea6a16c21583665fb5e82e898f8cfd2d2149a91a6 /runner
parentc609f0b27a48c07053d1bd7bb0b1da41c11c9a5f (diff)
add Sub field to BaseTarget
Diffstat (limited to 'runner')
-rw-r--r--runner/base.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/runner/base.go b/runner/base.go
index c5606a3..3f405a5 100644
--- a/runner/base.go
+++ b/runner/base.go
@@ -6,9 +6,11 @@ import (
"pik/model"
)
+// BaseTarget is an embeddable type which contains some of the information we need for (almost) every target.
type BaseTarget struct {
identity.Identity
MyTags model.Tags
+ Sub []string
}
func (t *BaseTarget) Tags() model.Tags {