mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-03 18:20:19 +00:00
9 lines
165 B
Go
9 lines
165 B
Go
package hostsensorutils
|
|
|
|
type IHostSensor interface {
|
|
Init() error
|
|
TearDown() error
|
|
CollectResources() ([]HostSensorDataEnvelope, error)
|
|
GetNamespace() string
|
|
}
|