Files
kubescape/hostsensorutils/hostsensorinterface.go
T

9 lines
165 B
Go

package hostsensorutils
type IHostSensor interface {
Init() error
TearDown() error
CollectResources() ([]HostSensorDataEnvelope, error)
GetNamespace() string
}