LoadConfig 如果指定配置文件,初始化配置 Deprecated: Use the LoadFileConfig instead
(configFile string, confType ...interface{})
| 96 | // LoadConfig 如果指定配置文件,初始化配置 |
| 97 | // Deprecated: Use the LoadFileConfig instead |
| 98 | func (service *TaskService) LoadConfig(configFile string, confType ...interface{}) *TaskService { |
| 99 | return service.LoadFileConfig(configFile, confType...) |
| 100 | } |
| 101 | |
| 102 | // LoadFileConfig 如果指定配置文件,初始化配置 |
| 103 | func (service *TaskService) LoadFileConfig(configFile string, confType ...interface{}) *TaskService { |
nothing calls this directly
no test coverage detected