Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync cmd: Move init operations into command logic to start Bubbletea application earlier #108

Merged
merged 6 commits into from
Sep 17, 2024
Merged
1 change: 1 addition & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ var textStyleBold = lipgloss.NewStyle().Bold(true).Render
var headerStyle = lipgloss.NewStyle().Bold(true).Foreground(lipgloss.Color("#9FC131")).Render
var checkMark = lipgloss.NewStyle().Foreground(lipgloss.Color("42")).SetString("✓")
var errorkMark = lipgloss.NewStyle().Foreground(lipgloss.Color("212")).SetString("X")
var thanksMark = lipgloss.NewStyle().SetString("🙏")

// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Expand Down
Loading