1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 07:30:41 +00:00

config: fix the import issue

This commit is contained in:
astaxie
2014-05-15 14:18:47 +08:00
parent 6082a0af3e
commit ef815bf5fc
4 changed files with 12 additions and 6 deletions

View File

@ -14,6 +14,7 @@ import (
"strings"
"sync"
"github.com/astaxie/beego/config"
"github.com/beego/x2j"
)
@ -24,7 +25,7 @@ type XMLConfig struct {
}
// Parse returns a ConfigContainer with parsed xml config map.
func (xmls *XMLConfig) Parse(filename string) (ConfigContainer, error) {
func (xmls *XMLConfig) Parse(filename string) (config.ConfigContainer, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
@ -101,5 +102,5 @@ func (c *XMLConfigContainer) DIY(key string) (v interface{}, err error) {
}
func init() {
Register("xml", &XMLConfig{})
config.Register("xml", &XMLConfig{})
}

View File

@ -9,6 +9,8 @@ package config
import (
"os"
"testing"
"github.com/astaxie/beego/config"
)
//xml parse should incluce in <config></config> tags
@ -36,7 +38,7 @@ func TestXML(t *testing.T) {
}
f.Close()
defer os.Remove("testxml.conf")
xmlconf, err := NewConfig("xml", "testxml.conf")
xmlconf, err := config.NewConfig("xml", "testxml.conf")
if err != nil {
t.Fatal(err)
}