List label description #60

Merged
techknowlogick merged 1 commits from lunny/tea:lunny/label_description into master 2019-10-28 19:47:43 +00:00
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
tea
.idea/
.history/

View File

@ -43,6 +43,7 @@ func runLabels(ctx *cli.Context) error {
"Index",
"Color",
"Name",
"Description",
}
var values [][]string
@ -76,6 +77,7 @@ func runLabels(ctx *cli.Context) error {
strconv.FormatInt(label.ID, 10),
label.Color,
label.Name,
label.Description,
},
)
}