mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
16 lines
195 B
Go
16 lines
195 B
Go
|
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)
|
||
|
}
|
||
|
}
|