mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
31 lines
606 B
Go
31 lines
606 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"github.com/MichaelMure/git-bug/termui"
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func runTermUI(cmd *cobra.Command, args []string) error {
|
|
backend, err := cache.NewRepoCache(repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer backend.Close()
|
|
interrupt.RegisterCleaner(backend.Close)
|
|
|
|
return termui.Run(backend)
|
|
}
|
|
|
|
var termUICmd = &cobra.Command{
|
|
Use: "termui",
|
|
Short: "Launch the terminal UI.",
|
|
PreRunE: loadRepoEnsureUser,
|
|
RunE: runTermUI,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(termUICmd)
|
|
}
|