Files
kubescape/core/pkg/resultshandling/reporter/interface.go
David Wertenteil 858d7ac2ef update pkg struct
2022-04-10 18:06:28 +03:00

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
}