Re-add zet links

This commit is contained in:
Oliver Davies 2025-09-30 07:00:00 +01:00
parent df9fa52c21
commit 035d575f0e
5 changed files with 51 additions and 4 deletions

View file

@ -3,6 +3,7 @@ package cmd
import (
"fmt"
"os"
"strings"
"github.com/spf13/cobra"
@ -23,6 +24,8 @@ var findCmd = &cobra.Command{
zets := lib.SearchZets(args[0])
lib.ParseZetList(zets)
result := lib.ParseZetList(zets)
fmt.Println(strings.Join(result, "\n"))
},
}