Files
2023-01-31 08:06:33 +01:00

16 lines
303 B
Go

package reporter
import (
"context"
"github.com/kubescape/kubescape/v2/core/cautils"
)
type IReport interface {
Submit(ctx context.Context, opaSessionObj *cautils.OPASessionObj) error
SetCustomerGUID(customerGUID string)
SetClusterName(clusterName string)
DisplayReportURL()
GetURL() string
}