2017-06-18 22:01:44 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-06-26 18:44:37 +00:00
|
|
|
"fmt"
|
2017-06-29 10:21:59 +00:00
|
|
|
"os"
|
2017-06-26 18:44:37 +00:00
|
|
|
|
2018-02-20 20:25:31 +00:00
|
|
|
"github.com/pterodactyl/wings/command"
|
2017-06-18 22:01:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2017-06-29 10:21:59 +00:00
|
|
|
if err := command.RootCommand.Execute(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
2017-06-26 18:44:37 +00:00
|
|
|
}
|
2017-06-18 22:01:44 +00:00
|
|
|
}
|