mirror of
https://github.com/zitadel/zitadel
synced 2024-11-21 16:30:53 +00:00
16 lines
218 B
Go
16 lines
218 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/zitadel/zitadel/cmd"
|
|
)
|
|
|
|
func main() {
|
|
args := os.Args[1:]
|
|
rootCmd := cmd.New(os.Stdout, os.Stdin, args, nil)
|
|
cobra.CheckErr(rootCmd.Execute())
|
|
}
|