git-bug/commands/termui.go
2021-05-09 11:33:20 +02:00

28 lines
498 B
Go

package commands
import (
"github.com/spf13/cobra"
"github.com/MichaelMure/git-bug/termui"
)
func newTermUICommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "termui",
Aliases: []string{"tui"},
Short: "Launch the terminal UI.",
PreRunE: loadBackendEnsureUser(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
return runTermUI(env)
}),
}
return cmd
}
func runTermUI(env *Env) error {
return termui.Run(env.backend)
}