gospt/cmd/tui.go
jjohnstondev e5bef071c7
Some checks failed
continuous-integration/drone/tag Build is failing
refac
2023-01-09 15:52:21 -08:00

28 lines
603 B
Go

package cmd
import (
"os"
"path/filepath"
"gospt/internal/tui"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(tuiCmd)
}
var tuiCmd = &cobra.Command{
Use: "tui",
Short: "Default command, launches the main menu",
Long: `Default command. this is what will run if no other commands are present. Shows the main menu.`,
RunE: func(cmd *cobra.Command, args []string) error {
configDir, _ := os.UserConfigDir()
if _, err := os.Stat(filepath.Join(configDir, "gospt/device.json")); err != nil {
return tui.StartTea(ctx, client)
}
return tui.DisplayMain(ctx, client)
},
}