From 103e84d847262830bbaa550b37218e9ca8b317d3 Mon Sep 17 00:00:00 2001 From: Himanshu Sardana Date: Thu, 26 Mar 2026 21:26:35 +0000 Subject: refactor: split into cmd, pkg --- cmd/themes.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cmd/themes.go (limited to 'cmd/themes.go') diff --git a/cmd/themes.go b/cmd/themes.go new file mode 100644 index 0000000..7a1457a --- /dev/null +++ b/cmd/themes.go @@ -0,0 +1,13 @@ +package cmd + +import ( + "fmt" + "strings" + + "github.com/HimanshuSardana/kite/internal/build" +) + +func runListThemes(args []string) { + themeList := build.ListThemes("") + fmt.Println(strings.Join(themeList, "\n")) +} -- cgit v1.3.1