mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-19 22:28:45 +05:00
Replace interface{} with any
This commit is contained in:
committed by
Dan Christian Bogos
parent
1d7bd1389b
commit
113e2a2bdf
@@ -52,14 +52,14 @@ func (self *CmdParse) RpcMethod() string {
|
||||
return utils.EmptyString
|
||||
}
|
||||
|
||||
func (self *CmdParse) RpcParams(reset bool) interface{} {
|
||||
func (self *CmdParse) RpcParams(reset bool) any {
|
||||
if reset || self.rpcParams == nil {
|
||||
self.rpcParams = &AttrParse{}
|
||||
}
|
||||
return self.rpcParams
|
||||
}
|
||||
|
||||
func (self *CmdParse) RpcResult() interface{} {
|
||||
func (self *CmdParse) RpcResult() any {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user