diff options
| author | ewy <ewy0@protonmail.com> | 2026-06-06 16:55:11 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-06-06 16:55:11 +0200 |
| commit | 8a376262447f8858d83d07e0d98e8e4ea5c50865 (patch) | |
| tree | 1b950a49f56aea32842e2a6fc5dc243e27f051b2 /man/manview/data.go | |
| parent | 58e255d3c16c7d4a7d08afde7dd3acf481e2d8ae (diff) | |
add more shit to the manpage
Diffstat (limited to 'man/manview/data.go')
| -rw-r--r-- | man/manview/data.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/man/manview/data.go b/man/manview/data.go index 8c21ffd..b59c78f 100644 --- a/man/manview/data.go +++ b/man/manview/data.go @@ -3,6 +3,8 @@ package manview import ( _ "embed" _ "git.sr.ht/~ewy/pik/flags" + "git.sr.ht/~ewy/pik/indexers/pikdex" + "git.sr.ht/~ewy/pik/model" "git.sr.ht/~ewy/pik/spool" "github.com/spf13/pflag" "runtime" @@ -20,6 +22,8 @@ type ManData struct { Runtime string Version string ExitCodes map[int]*spool.ExitCode + MetaFiles map[string]*pikdex.MetaFile + TagMap map[string]*model.Tag } func NewData() ManData { @@ -39,5 +43,7 @@ func NewData() ManData { Version: version, Revision: info.Main.Version, ExitCodes: spool.CodeMap, + MetaFiles: pikdex.MetaFiles, + TagMap: model.TagMap, } } |
