package main import ( "os" "github.com/runconduit/conduit/cli/cmd" // Load all the auth plugins for the cloud providers. _ "k8s.io/client-go/plugin/pkg/client/auth" ) func main() { if err := cmd.RootCmd.Execute(); err != nil { os.Exit(1) } }