mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
package main
|
|
|
|
import (
|
|
"github.com/armosec/kubescape/v2/httphandler/listener"
|
|
logger "github.com/dwertent/go-logger"
|
|
)
|
|
|
|
func main() {
|
|
logger.L().Fatal(listener.SetupHTTPListener().Error())
|
|
}
|