Skip to content

Commit

Permalink
🚸 Update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenWaygate committed Jun 5, 2024
1 parent ed13fc2 commit eee649a
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@ Usage:
yutu [command]

Available Commands:
activity manipulate YouTube activities
activity list YouTube activities
channel manipulate YouTube channels
channelBanner manipulate Youtube channelBanner
channelBanner insert Youtube channelBanner
completion Generate the autocompletion script for the specified shell
help Help about any command
i18nLanguage manipulate YouTube i18nLanguages
i18nRegion manipulate YouTube i18nRegions
member manipulate YouTube members
membershipsLevel manipulate YouTube memberships levels
i18nLanguage list YouTube i18nLanguages
i18nRegion list YouTube i18nRegions
member list YouTube members
membershipsLevel list YouTube memberships levels
playlist manipulate YouTube playlists
playlistItem manipulate YouTube playlist items
search Search for youtube resources
subscription manipulate YouTube subscriptions
version Show the version of yutu
video manipulate YouTube videos
videoAbuseReportReason manipulate YouTube video abuse report reasons
videoCategory manipulate YouTube video categories
videoAbuseReportReason list YouTube video abuse report reasons
videoCategory list YouTube video categories
watermark manipulate Youtube watermarks

Flags:
Expand Down
4 changes: 2 additions & 2 deletions cmd/activity/activity.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ var (

var activityCmd = &cobra.Command{
Use: "activity",
Short: "manipulate YouTube activities",
Long: "manipulate YouTube activities, only list for now",
Short: "list YouTube activities",
Long: "list YouTube activities",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/channelBanner/channelBanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var (

var channelBannerCmd = &cobra.Command{
Use: "channelBanner",
Short: "manipulate Youtube channelBanner",
Long: "manipulate Youtube channelBanner, only insert for now",
Short: "insert Youtube channelBanner",
Long: "insert Youtube channelBanner",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/i18nLanguage/i18nLanguage.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ var (

var i18nLanguageCmd = &cobra.Command{
Use: "i18nLanguage",
Short: "manipulate YouTube i18nLanguages",
Long: "manipulate YouTube i18nLanguages, only list for now",
Short: "list YouTube i18nLanguages",
Long: "list YouTube i18nLanguages",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/i18nRegion/i18nRegion.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ var (

var i18nRegionCmd = &cobra.Command{
Use: "i18nRegion",
Short: "manipulate YouTube i18nRegions",
Long: "manipulate YouTube i18nRegions, only list for now",
Short: "list YouTube i18nRegions",
Long: "list YouTube i18nRegions",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/member/member.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ var (

var memberCmd = &cobra.Command{
Use: "member",
Short: "manipulate YouTube members",
Long: "manipulate YouTube members, only list for now",
Short: "list YouTube members",
Long: "list YouTube members",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/membershipsLevel/membershipsLevel.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ var (

var membershipsLevelCmd = &cobra.Command{
Use: "membershipsLevel",
Short: "manipulate YouTube memberships levels",
Long: "manipulate YouTube memberships levels, only list for now",
Short: "list YouTube memberships levels",
Long: "list YouTube memberships levels",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/videoAbuseReportReason/videoAbuseReportReason.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ var (

var videoAbuseReportReasonCmd = &cobra.Command{
Use: "videoAbuseReportReason",
Short: "manipulate YouTube video abuse report reasons",
Long: "manipulate YouTube video abuse report reasons, only list for now",
Short: "list YouTube video abuse report reasons",
Long: "list YouTube video abuse report reasons",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/videoCategory/videoCategory.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ var (

var videoCategoryCmd = &cobra.Command{
Use: "videoCategory",
Short: "manipulate YouTube video categories",
Long: "manipulate YouTube video categories, only list for now",
Short: "list YouTube video categories",
Long: "list YouTube video categories",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down

0 comments on commit eee649a

Please # to comment.