2017-12-04 11:59:11 +00:00
|
|
|
package service
|
|
|
|
|
2017-12-13 14:10:52 +00:00
|
|
|
import (
|
|
|
|
configM "git.loafle.net/overflow/overflow_commons_go/modules/config/model"
|
|
|
|
)
|
|
|
|
|
2017-12-04 11:59:11 +00:00
|
|
|
type ConfigService struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ConfigService) Add() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ConfigService) Remove() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-12-13 14:10:52 +00:00
|
|
|
func (cs *ConfigService) Init(configs []map[string]configM.Config) bool {
|
|
|
|
for _, item := range configs {
|
|
|
|
for k, v := range item {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2017-12-04 11:59:11 +00:00
|
|
|
|
2017-12-13 14:10:52 +00:00
|
|
|
return true
|
2017-12-04 11:59:11 +00:00
|
|
|
}
|