mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d76703061b
* cli: add minimal doc generator * fixup! cli: add
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)
|
|
}
|