zitadel/main.go
2023-04-24 20:40:31 +03:00

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())
}