13 lines
169 B
Go
13 lines
169 B
Go
package player
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func Root() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "player",
|
|
Subcommands: []*cli.Command{
|
|
Run(),
|
|
},
|
|
}
|
|
}
|