Files
kubescape/core/pkg/hostsensorutils/hostsensorinterface.go
2022-03-13 09:59:57 +02:00

11 lines
243 B
Go

package hostsensorutils
import "github.com/armosec/opa-utils/objectsenvelopes/hostsensor"
type IHostSensor interface {
Init() error
TearDown() error
CollectResources() ([]hostsensor.HostSensorDataEnvelope, error)
GetNamespace() string
}