Move CGREvent from utils to engine

This commit is contained in:
ionutboangiu
2024-02-26 06:01:43 -05:00
committed by Dan Christian Bogos
parent 158dce7323
commit 02195c47ed
321 changed files with 3695 additions and 3693 deletions

View File

@@ -22,6 +22,7 @@ import (
"reflect"
"testing"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/utils"
)
@@ -44,7 +45,7 @@ func TestGetCommandValueCase1(t *testing.T) {
expected := &CmdGetChargersForEvent{
name: "chargers_for_event",
rpcMethod: utils.ChargerSv1GetChargersForEvent,
rpcParams: &utils.CGREvent{},
rpcParams: &engine.CGREvent{},
}
result, err := GetCommandValue("chargers_for_event", false)
if err != nil {