mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
12 lines
263 B
Go
12 lines
263 B
Go
package reporter
|
|
|
|
import "github.com/armosec/kubescape/v2/core/cautils"
|
|
|
|
type IReport interface {
|
|
Submit(opaSessionObj *cautils.OPASessionObj) error
|
|
SetCustomerGUID(customerGUID string)
|
|
SetClusterName(clusterName string)
|
|
DisplayReportURL()
|
|
GetURL() string
|
|
}
|