Refactored GetStoredCdrs method to increase the number of items being queried

This commit is contained in:
DanB
2014-11-26 13:48:07 +01:00
parent 63faee90b2
commit 489c17c561
11 changed files with 442 additions and 237 deletions

View File

@@ -327,3 +327,11 @@ func StringPointer(str string) *string {
func IntPointer(i int) *int {
return &i
}
func Int64Pointer(i int64) *int64 {
return &i
}
func Float64Pointer(f float64) *float64 {
return &f
}