Files
kubescape/main.go
Vlad Klokun cb38a4e8a1 style: go fmt the project
- Fixes style inside the project with `go fmt`
2022-12-22 15:00:59 +02:00

14 lines
199 B
Go

package main
import (
logger "github.com/kubescape/go-logger"
"github.com/kubescape/kubescape/v2/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
logger.L().Fatal(err.Error())
}
}