summaryrefslogtreecommitdiff
path: root/cmd/themes.go
diff options
context:
space:
mode:
authorHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-26 21:26:35 +0000
committerHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-26 21:26:35 +0000
commit103e84d847262830bbaa550b37218e9ca8b317d3 (patch)
treee19d3bfd6594600fb28be1ccac1a3869207bc49c /cmd/themes.go
parent5c631f0cdb8ee3238ff054d171dd8babd158047b (diff)
refactor: split into cmd, pkg
Diffstat (limited to 'cmd/themes.go')
-rw-r--r--cmd/themes.go13
1 files changed, 13 insertions, 0 deletions
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"))
+}