mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
15 lines
202 B
Go
15 lines
202 B
Go
package interfaces
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type NodeMasterService interface {
|
|
NodeService
|
|
Monitor()
|
|
SetMonitorInterval(duration time.Duration)
|
|
Register() error
|
|
StopOnError()
|
|
GetServer() GrpcServer
|
|
}
|