From ee481fa406bb685a16d8b568fca0c9f592c06180 Mon Sep 17 00:00:00 2001 From: ewy Date: Wed, 22 Apr 2026 17:25:40 +0200 Subject: add Sub field to BaseTarget --- runner/base.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runner/base.go') 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 { -- cgit v1.3.1