9 lines
161 B
Go
9 lines
161 B
Go
package config_manager
|
|
|
|
type ConfigManager interface {
|
|
GetGlobalConfig() *GlobalConfig
|
|
GetCrawlerById(id string) *Config
|
|
GetCrawlers() map[string] *Config
|
|
}
|
|
|