aboutsummaryrefslogtreecommitdiffstats
path: root/commands/status.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-11-22 14:53:15 +0100
committerGitHub <noreply@github.com>2022-11-22 14:53:15 +0100
commit70bd7377b6362127794f3a6198dd2c63863025fc (patch)
treee159372673104ade1f15ddc1a84aa9da93e93552 /commands/status.go
parenta3fa445a9c76631c4cd16f93e1c1c68a954adef7 (diff)
parentacc9a6f3a6df2961c3ae44352216d915cb9b5315 (diff)
downloadgit-bug-70bd7377b6362127794f3a6198dd2c63863025fc.tar.gz
Merge pull request #870 from MichaelMure/cli-reorg
commands: reorg into different packages
Diffstat (limited to 'commands/status.go')
-rw-r--r--commands/status.go38
1 files changed, 0 insertions, 38 deletions
diff --git a/commands/status.go b/commands/status.go
deleted file mode 100644
index c3e860b6..00000000
--- a/commands/status.go
+++ /dev/null
@@ -1,38 +0,0 @@
-package commands
-
-import (
- _select "github.com/MichaelMure/git-bug/commands/select"
- "github.com/spf13/cobra"
-)
-
-func newStatusCommand() *cobra.Command {
- env := newEnv()
-
- cmd := &cobra.Command{
- Use: "status [ID]",
- Short: "Display or change a bug status.",
- PreRunE: loadBackend(env),
- RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
- return runStatus(env, args)
- }),
- ValidArgsFunction: completeBug(env),
- }
-
- cmd.AddCommand(newStatusCloseCommand())
- cmd.AddCommand(newStatusOpenCommand())
-
- return cmd
-}
-
-func runStatus(env *Env, args []string) error {
- b, args, err := _select.ResolveBug(env.backend, args)
- if err != nil {
- return err
- }
-
- snap := b.Snapshot()
-
- env.out.Println(snap.Status)
-
- return nil
-}