1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 14:10:54 +00:00
This commit is contained in:
astaxie 2013-12-07 14:47:20 +08:00
parent 48ad0202bf
commit 35d15b8977

View File

@ -33,7 +33,8 @@ func Register(name string, adapter Config) {
adapters[name] = adapter adapters[name] = adapter
} }
// config need to be correct JSON as string: {"interval":360} // adapterNamer is ini/json/xml/yaml
// filename is the config file path
func NewConfig(adapterName, fileaname string) (ConfigContainer, error) { func NewConfig(adapterName, fileaname string) (ConfigContainer, error) {
adapter, ok := adapters[adapterName] adapter, ok := adapters[adapterName]
if !ok { if !ok {