Moving config into it's own package, renaming config parameters to be exported by the package

This commit is contained in:
DanB
2013-04-07 11:31:55 +02:00
parent b9f6f97b49
commit e95939e4ea
10 changed files with 447 additions and 448 deletions

View File

@@ -4,6 +4,8 @@ go test github.com/cgrates/cgrates/rater
ts=$?
go test github.com/cgrates/cgrates/sessionmanager
sm=$?
go test github.com/cgrates/cgrates/config
cfg=$?
go test github.com/cgrates/cgrates/cmd/cgr-rater
cr=$?
go test github.com/cgrates/cgrates/inotify
@@ -13,4 +15,4 @@ md=$?
go test github.com/cgrates/fsock
fs=$?
exit $ts && $sm && $bl && $cr && $it && $md && $fs
exit $ts && $sm && $cfg && $bl && $cr && $it && $md && $fs