Skip to content

Commit

Permalink
cleanup: sort cmd.AddCommand (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
xx4h authored Oct 9, 2024
1 parent 0e1e1a3 commit b3a9ee9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ func newRootCmd(h *pkg.Hctl, out io.Writer, _ []string) *cobra.Command {
}

cmd.AddCommand(
newVersionCmd(out),
newCompletionCmd(),
newInitCmd(h),
newListCmd(h),
newToggleCmd(h, out),
newCompletionCmd(),
newOnCmd(h),
newOffCmd(h, out),
newOnCmd(h),
newPlayCmd(h, out),
newToggleCmd(h, out),
newVersionCmd(out),
newVolumeCmd(h, out),
)

Expand Down

0 comments on commit b3a9ee9

Please sign in to comment.