From 45c843a3a4f0681d45b733f6bd9484a5b551fdba Mon Sep 17 00:00:00 2001 From: Tripon Alexandru-Ionut Date: Thu, 18 Apr 2019 09:30:33 +0300 Subject: [PATCH] Updated supplier_ids console command --- console/supplier_ids.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/console/supplier_ids.go b/console/supplier_ids.go index 08ade98c8..b4cbce6c7 100644 --- a/console/supplier_ids.go +++ b/console/supplier_ids.go @@ -19,7 +19,6 @@ along with this program. If not, see package console import ( - "github.com/cgrates/cgrates/engine" "github.com/cgrates/cgrates/utils" ) @@ -60,6 +59,6 @@ func (self *CmdSuppliersIDs) PostprocessRpcParams() error { } func (self *CmdSuppliersIDs) RpcResult() interface{} { - var atr *engine.SortedSuppliers + var atr []string return &atr }