mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
* bump version Signed-off-by: David Wertenteil <dwertent@armosec.io> * change default view Signed-off-by: David Wertenteil <dwertent@armosec.io> * fixed tests Signed-off-by: David Wertenteil <dwertent@armosec.io> * fixed go mod Signed-off-by: David Wertenteil <dwertent@armosec.io> --------- Signed-off-by: David Wertenteil <dwertent@armosec.io>
14 lines
263 B
Go
14 lines
263 B
Go
package reporter
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/kubescape/kubescape/v3/core/cautils"
|
|
)
|
|
|
|
type IReport interface {
|
|
Submit(ctx context.Context, opaSessionObj *cautils.OPASessionObj) error
|
|
SetTenantConfig(tenantConfig cautils.ITenantConfig)
|
|
DisplayMessage()
|
|
}
|