This commit is contained in:
Radu Ioan Fericean
2014-04-19 12:19:44 +03:00
parent 0122acced1
commit 0e55acbfdb
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ type CmdGetAccount struct {
name string
rpcMethod string
rpcParams *apier.AttrGetAccount
rpcResult *engine.CallCost
rpcResult engine.Account
*CommandExecuter
}

View File

@@ -34,7 +34,7 @@ type CmdGetCacheAge struct {
name string
rpcMethod string
rpcParams *StringWrapper
rpcResult *utils.CachedItemAge
rpcResult utils.CachedItemAge
*CommandExecuter
}

View File

@@ -23,7 +23,7 @@ import "github.com/cgrates/cgrates/utils"
func init() {
c := &CmdGetCacheStats{
name: "get_cache_stats",
rpcMethod: "ApierV1.GetCachedStats",
rpcMethod: "ApierV1.GetCacheStats",
}
commands[c.Name()] = c
c.CommandExecuter = &CommandExecuter{c}