Revert "Move CGREvent from utils to engine"

This reverts commit 02195c47ed.
This commit is contained in:
ionutboangiu
2024-03-01 12:14:40 -05:00
committed by Dan Christian Bogos
parent 0c99cf1df5
commit 0aea8ac641
321 changed files with 3693 additions and 3695 deletions

View File

@@ -21,7 +21,6 @@ package console
import (
"time"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/sessions"
"github.com/cgrates/cgrates/utils"
)
@@ -54,7 +53,7 @@ func (self *CmdSessionsProcessEvent) RpcMethod() string {
func (self *CmdSessionsProcessEvent) RpcParams(reset bool) any {
if reset || self.rpcParams == nil {
self.rpcParams = &sessions.V1ProcessMessageArgs{
CGREvent: new(engine.CGREvent),
CGREvent: new(utils.CGREvent),
}
}
return self.rpcParams