blob: 49f4c7cb643fc2a4a0d319fb17461a1413cdbb72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package commands
import (
"fmt"
"github.com/MichaelMure/git-bug/cache"
"github.com/spf13/cobra"
)
func runLsLabel(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
labels := backend.ValidLabels()
for _, l := range labels {
fmt.Println(l)
}
return nil
}
var lsLabelCmd = &cobra.Command{
Use: "ls-label",
Short: "List valid labels",
Long: `List valid labels.
Note: in the future, a proper label policy could be implemented where valid labels are defined in a configuration file. Until that, the default behavior is to return the list of labels already used.`,
RunE: runLsLabel,
}
func init() {
RootCmd.AddCommand(lsLabelCmd)
}
|