diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-22 17:25:40 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-22 17:25:40 +0200 |
| commit | ee481fa406bb685a16d8b568fca0c9f592c06180 (patch) | |
| tree | a6a16c21583665fb5e82e898f8cfd2d2149a91a6 /runner | |
| parent | c609f0b27a48c07053d1bd7bb0b1da41c11c9a5f (diff) | |
add Sub field to BaseTarget
Diffstat (limited to 'runner')
| -rw-r--r-- | runner/base.go | 2 |
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 { |
