added libraries back to main repo

This commit is contained in:
Radu Ioan Fericean
2012-09-20 11:33:06 +03:00
parent dc4f8b5494
commit ef7a7a7ac4
9 changed files with 9 additions and 7 deletions

1
balancer2go Submodule

Submodule balancer2go added at 9ad3b71de8

1
cache2go Submodule

Submodule cache2go added at 54df7dbe65

View File

@@ -23,11 +23,11 @@ import (
"errors"
"flag"
"fmt"
"github.com/cgrates/cgrates/balancer2go"
"github.com/cgrates/cgrates/mediator"
"github.com/cgrates/cgrates/scheduler"
"github.com/cgrates/cgrates/sessionmanager"
"github.com/cgrates/cgrates/timespans"
"github.com/rif/balancer2go"
"io"
"net"
"net/rpc"

View File

@@ -159,7 +159,7 @@ func (m *Mediator) parseCSV(cdrfn string) (err error) {
} else {
record = append(record, strconv.FormatFloat(cc.ConnectFee+cc.Cost, 'f', -1, 64))
}
w.WriteString(strings.Join(record, ","))
w.WriteString(strings.Join(record, ",") + "\n")
}
return
}

View File

@@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
package timespans
import (
"github.com/rif/cache2go"
"github.com/cgrates/cgrates/cache2go"
"strconv"
"strings"
"time"

View File

@@ -21,7 +21,7 @@ package timespans
import (
"errors"
"fmt"
"github.com/rif/cache2go"
"github.com/cgrates/cgrates/cache2go"
"log/syslog"
"math"
"time"

View File

@@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
package timespans
import (
"github.com/rif/cache2go"
"github.com/cgrates/cgrates/cache2go"
"strings"
)

View File

@@ -20,7 +20,7 @@ package timespans
import (
"encoding/json"
"github.com/rif/cache2go"
"github.com/cgrates/cgrates/cache2go"
"reflect"
"testing"
)

View File

@@ -21,8 +21,8 @@ package timespans
import (
"errors"
"fmt"
"github.com/cgrates/cgrates/balancer2go"
"github.com/cgrates/cgrates/console"
"github.com/rif/balancer2go"
"net/rpc"
"reflect"
"runtime"