mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 06:48:08 +02:00
14 lines
257 B
Go
14 lines
257 B
Go
package harvester
|
|
|
|
import (
|
|
uuid "github.com/satori/go.uuid"
|
|
)
|
|
|
|
// Harvester contains all methods which must be supported by each harvester
|
|
// so the registry can be used by the prospector.
|
|
type Harvester interface {
|
|
ID() uuid.UUID
|
|
Run() error
|
|
Stop()
|
|
}
|