mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-06 01:55:28 -05:00
17 lines
226 B
Go
17 lines
226 B
Go
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)
|
|
}
|