arcast/internal/command/player/root.go

13 lines
169 B
Go
Raw Permalink Normal View History

2023-12-13 20:07:22 +01:00
package player
import "github.com/urfave/cli/v2"
func Root() *cli.Command {
return &cli.Command{
Name: "player",
Subcommands: []*cli.Command{
Run(),
},
}
}