mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
216 B
Go
13 lines
216 B
Go
package interfaces
|
|
|
|
type NodeConfigService interface {
|
|
Init() error
|
|
Reload() error
|
|
GetBasicNodeInfo() Entity
|
|
GetNodeKey() string
|
|
GetNodeName() string
|
|
IsMaster() bool
|
|
GetAuthKey() string
|
|
GetMaxRunners() int
|
|
}
|