mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-27 13:58:06 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/armosec/kubescape/v2/httphandler/docs"
|
|
"github.com/armosec/kubescape/v2/httphandler/listener"
|
|
logger "github.com/dwertent/go-logger"
|
|
)
|
|
|
|
func main() {
|
|
logger.L().Fatal(listener.SetupHTTPListener().Error())
|
|
}
|