feat(setup): interactive first-run wizard with LLM probe and systemd install

This commit is contained in:
2026-04-03 12:21:17 +02:00
parent 6cd581385e
commit 75166acbdf
2 changed files with 258 additions and 0 deletions

18
cmd/setup.go Normal file
View File

@@ -0,0 +1,18 @@
package cmd
import (
"github.com/spf13/cobra"
"somegit.dev/vikingowl/reddit-reader/internal/setup"
)
var setupCmd = &cobra.Command{
Use: "setup",
Short: "Interactive first-run setup wizard",
RunE: func(cmd *cobra.Command, args []string) error {
return setup.Run()
},
}
func init() {
rootCmd.AddCommand(setupCmd)
}