Files
crawlab/core/interfaces/node_master_service.go
2024-06-14 15:42:50 +08:00

15 lines
202 B
Go

package interfaces
import (
"time"
)
type NodeMasterService interface {
NodeService
Monitor()
SetMonitorInterval(duration time.Duration)
Register() error
StopOnError()
GetServer() GrpcServer
}