diff options
author | Alan Pearce | 2024-06-21 15:35:23 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-21 15:44:12 +0200 |
commit | 58a7fc78b8e17dc4ce009767afd9066bbaa9328f (patch) | |
tree | e5d4c12584f22d7718aea87540e4e437f1b47528 /internal/config/structs.go | |
parent | a1dfc548198a1326e71f1dd70303a5d3441f7a39 (diff) | |
download | searchix-58a7fc78b8e17dc4ce009767afd9066bbaa9328f.tar.lz searchix-58a7fc78b8e17dc4ce009767afd9066bbaa9328f.tar.zst searchix-58a7fc78b8e17dc4ce009767afd9066bbaa9328f.zip |
refactor: use encoding/xml for OpenSearchDescription
Diffstat (limited to 'internal/config/structs.go')
-rw-r--r-- | internal/config/structs.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/config/structs.go b/internal/config/structs.go index 6c6bc13..e6cf20b 100644 --- a/internal/config/structs.go +++ b/internal/config/structs.go @@ -4,6 +4,7 @@ package config // keep config structs here so that lll ignores the long lines (go doesn't support multi-line struct tags) import ( + "fmt" "log/slog" ) @@ -47,3 +48,14 @@ type Source struct { OutputPath string `comment:"(Fetcher=channel) Path under ./result symlink to folder containing {options,packages}.json."` Repo Repository `comment:"Used to generate declaration/definition links"` } + +func (source *Source) String() string { + switch source.Importer { + case Options: + return source.Name + " " + source.Importer.String() + case Packages: + return source.Name + default: + return fmt.Sprintf("Source(%s)", source.Name) + } +} |