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