mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 08:49:13 +00:00
5571db3e1b
* feat: improve console caching and provide build info * Update info.go
16 lines
238 B
Go
16 lines
238 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 /*, int(os.Stdin.Fd())*/, args)
|
|
cobra.CheckErr(rootCmd.Execute())
|
|
}
|