Files
kubescape/hostsensorutils/hostsensorinterface.go
2021-12-05 15:08:05 +02:00

9 lines
165 B
Go

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