mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
17 lines
243 B
Go
17 lines
243 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
kyverno "github.com/nirmata/kyverno/pkg/kyverno"
|
|
)
|
|
|
|
func main() {
|
|
cmd := kyverno.NewDefaultKyvernoCommand()
|
|
|
|
if err := cmd.Execute(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|