Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-10-05 01:01:38 +01:00
parent 4d11b5354c
commit 7b6712e05a
6 changed files with 8 additions and 8 deletions

View file

@ -21,7 +21,7 @@ If -j or --json is added, the results will be in JSON format.`,
zets := zet.GetAllZets()
if jsonOutput {
zetList := zet.CreateZetList(zets, false)
zetList := zet.NewZetList(zets, false)
result := zetList.Parse()
@ -33,7 +33,7 @@ If -j or --json is added, the results will be in JSON format.`,
fmt.Println(json)
} else {
zetList := zet.CreateZetList(zets)
zetList := zet.NewZetList(zets)
result := zetList.Parse()