mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
15 lines
234 B
Go
15 lines
234 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/caos/zitadel/cmd"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
args := os.Args[1:]
|
||
|
rootCmd := cmd.New(os.Stdout, os.Stdin /*, int(os.Stdin.Fd())*/, args)
|
||
|
cobra.CheckErr(rootCmd.Execute())
|
||
|
}
|