agent_api/config_manager/config_manager.go
2017-04-27 16:14:59 +09:00

9 lines
161 B
Go

package config_manager
type ConfigManager interface {
GetGlobalConfig() *GlobalConfig
GetCrawlerById(id string) *Config
GetCrawlers() map[string] *Config
}