@@ -31,7 +31,7 @@ func init() {
31
31
channelCmd .AddCommand (listCmd )
32
32
33
33
listCmd .Flags ().StringVarP (
34
- & categoryId , "categoryId" , "c " , "" ,
34
+ & categoryId , "categoryId" , "g " , "" ,
35
35
"Return the channels within the specified guide category ID" ,
36
36
)
37
37
listCmd .Flags ().StringVarP (
@@ -49,26 +49,26 @@ func init() {
49
49
& id , "id" , "i" , "" , "Return the channels with the specified IDs" ,
50
50
)
51
51
listCmd .Flags ().BoolVarP (
52
- & managedByMe , "managedByMe" , "M " , false ,
52
+ & managedByMe , "managedByMe" , "E " , false ,
53
53
"Specify the maximum number of items that should be returned" ,
54
54
)
55
55
listCmd .Flags ().Int64VarP (
56
56
& maxResults , "maxResults" , "n" , 5 ,
57
57
"The maximum number of items that should be returned" ,
58
58
)
59
59
listCmd .Flags ().BoolVarP (
60
- & mine , "mine" , "m " , true ,
60
+ & mine , "mine" , "M " , true ,
61
61
"Return the ids of channels owned by the authenticated user" ,
62
62
)
63
63
listCmd .Flags ().BoolVarP (
64
- & mySubscribers , "mySubscribers" , "s " , false ,
64
+ & mySubscribers , "mySubscribers" , "S " , false ,
65
65
"Return the channels subscribed to the authenticated user" ,
66
66
)
67
67
listCmd .Flags ().StringVarP (
68
68
& onBehalfOfContentOwner , "onBehalfOfContentOwner" , "b" , "" , "" ,
69
69
)
70
70
listCmd .Flags ().StringVarP (
71
- & output , "output" , "o" , "" , "Output format: json or yaml" ,
71
+ & output , "output" , "o" , "" , "json or yaml" ,
72
72
)
73
73
listCmd .Flags ().StringArrayVarP (
74
74
& parts , "parts" , "p" , []string {"id" , "snippet" , "status" },
0 commit comments