mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-23 16:18:44 +05:00
Replace interface{} with any
This commit is contained in:
committed by
Dan Christian Bogos
parent
1d7bd1389b
commit
113e2a2bdf
@@ -135,8 +135,8 @@ func (t CDRsql) TableName() string {
|
||||
return utils.CDRsTBL
|
||||
}
|
||||
|
||||
func (t CDRsql) AsMapStringInterface() (out map[string]interface{}) {
|
||||
out = make(map[string]interface{})
|
||||
func (t CDRsql) AsMapStringInterface() (out map[string]any) {
|
||||
out = make(map[string]any)
|
||||
// out["id"] = t.ID // ignore ID
|
||||
|
||||
out["run_id"] = t.RunID
|
||||
|
||||
Reference in New Issue
Block a user