1
0
Fork 0
mirror of https://github.com/kyverno/policy-reporter.git synced 2024-12-14 11:57:32 +00:00
policy-reporter/main.go

16 lines
195 B
Go
Raw Normal View History

2021-02-19 23:58:01 +00:00
package main
import (
"fmt"
"os"
"github.com/fjogeleit/policy-reporter/cmd"
)
func main() {
if err := cmd.NewCLI().Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}