mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-04 18:50:41 +00:00
8 lines
142 B
Go
8 lines
142 B
Go
package hostsensorutils
|
|
|
|
type IHostSensor interface {
|
|
Init() error
|
|
TearDown() error
|
|
CollectResources() ([]HostSensorDataEnvelope, error)
|
|
}
|