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-28 02:21:48 +00:00
|
|
|
GetSensorById(id string) *Config
|
|
|
|
GetSensors() map[string]*Config
|
2017-04-27 05:58:34 +00:00
|
|
|
}
|