agent_api/config_manager/config_manager.go

9 lines
161 B
Go
Raw Normal View History

2017-04-27 05:58:34 +00:00
package config_manager
type ConfigManager interface {
2017-04-27 06:21:22 +00:00
GetGlobalConfig() *GlobalConfig
2017-04-27 07:14:59 +00:00
GetCrawlerById(id string) *Config
GetCrawlers() map[string] *Config
2017-04-27 05:58:34 +00:00
}