mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-05 10:16:52 +00:00
15 lines
249 B
Go
15 lines
249 B
Go
package main
|
|
|
|
import (
|
|
"github.com/armosec/kubescape/v2/cmd"
|
|
"github.com/armosec/kubescape/v2/core/cautils/logger"
|
|
)
|
|
|
|
func main() {
|
|
ks := cmd.NewDefaultKubescapeCommand()
|
|
err := ks.Execute()
|
|
if err != nil {
|
|
logger.L().Fatal(err.Error())
|
|
}
|
|
}
|