mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-25 00:58:45 +05:00
Refactored GetStoredCdrs method to increase the number of items being queried
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user