Replace interface{} with any

This commit is contained in:
ionutboangiu
2023-05-29 11:44:03 -04:00
committed by Dan Christian Bogos
parent 1d7bd1389b
commit 113e2a2bdf
628 changed files with 7230 additions and 7230 deletions

View File

@@ -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