zitadel/main.go

16 lines
218 B
Go
Raw Normal View History

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