rename main.go to wings.go

This commit is contained in:
Jakob Schrettenbrunner
2017-07-06 19:00:21 +02:00
parent ae41a0e76e
commit 4421349bfd

15
wings.go Normal file
View File

@@ -0,0 +1,15 @@
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)
}
}