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

14 lines
232 B
Go

package interfaces
type NodeConfigService interface {
WithConfigPath
Init() error
Reload() error
GetBasicNodeInfo() Entity
GetNodeKey() string
GetNodeName() string
IsMaster() bool
GetAuthKey() string
GetMaxRunners() int
}