constellation/cli/main.go

17 lines
226 B
Go
Raw Normal View History

package main
import (
"os"
"github.com/edgelesssys/constellation/cli/cmd"
"github.com/spf13/cobra"
)
func main() {
cobra.EnableCommandSorting = false
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
os.Exit(0)
}