8 lines
120 B
Go
8 lines
120 B
Go
|
package config_manager
|
||
|
|
||
|
type ConfigManager interface {
|
||
|
GetGlobalConfig() GlobalConfig
|
||
|
GetCrawler(id string) Config
|
||
|
}
|
||
|
|