2023-12-13 20:07:22 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"forge.cadoles.com/arcad/arcast/internal/command"
|
|
|
|
"forge.cadoles.com/arcad/arcast/internal/command/player"
|
|
|
|
)
|
|
|
|
|
2024-04-26 15:09:11 +02:00
|
|
|
var Version = "dev"
|
|
|
|
|
2023-12-13 20:07:22 +01:00
|
|
|
func main() {
|
|
|
|
command.Main(
|
|
|
|
"arcast",
|
2024-04-26 15:09:11 +02:00
|
|
|
"desktop player",
|
|
|
|
Version,
|
2024-01-12 17:09:19 +01:00
|
|
|
player.Root().Subcommands...,
|
2023-12-13 20:07:22 +01:00
|
|
|
)
|
|
|
|
}
|