diff options
| author | ewy <ewy0@protonmail.com> | 2026-06-06 17:49:55 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-06-06 17:49:55 +0200 |
| commit | 48e5ba29bd48728d5bf221b8ad57b9f70c049224 (patch) | |
| tree | efab19e401a1611a1e013c5ec55b33be7aa15d39 /model/tags.go | |
| parent | 3795bc715f1f7c054177a2c04bddb08f2eb925cf (diff) | |
update tests
Diffstat (limited to 'model/tags.go')
| -rw-r--r-- | model/tags.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/model/tags.go b/model/tags.go index 9c5035d..8782009 100644 --- a/model/tags.go +++ b/model/tags.go @@ -40,6 +40,10 @@ var ( Override = New("override", "the .override tag will make this target get selected over other targets with the same name. Use this when your machine needs a custom workflow. It is discouraged to check these into version control, as everyone will receive your override.") ) +func (t *Tag) String() string { + return t.Name +} + var TagList []*Tag var TagMap = map[string]*Tag{} |
