mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
14 lines
232 B
Go
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
|
|
}
|