package main import ( "fmt" "os" "github.com/pterodactyl/wings/command" ) func main() { if err := command.RootCommand.Execute(); err != nil { fmt.Println(err) os.Exit(1) } }