From 088589a5accd3a2b9aa89d9fbd2680420fb32652 Mon Sep 17 00:00:00 2001 From: Tripon Alexandru-Ionut Date: Wed, 10 Apr 2019 10:00:04 +0300 Subject: [PATCH] Renamed dispatcherhost to dispatcher_host --- console/{dispatcherhost.go => dispatcher_host.go} | 2 +- console/{dispatcherhost_ids.go => dispatcher_host_ids.go} | 2 +- console/{dispatcherhost_remove.go => dispatcher_host_remove.go} | 2 +- console/{dispatcherhost_set.go => dispatcher_host_set.go} | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename console/{dispatcherhost.go => dispatcher_host.go} (98%) rename console/{dispatcherhost_ids.go => dispatcher_host_ids.go} (97%) rename console/{dispatcherhost_remove.go => dispatcher_host_remove.go} (97%) rename console/{dispatcherhost_set.go => dispatcher_host_set.go} (97%) diff --git a/console/dispatcherhost.go b/console/dispatcher_host.go similarity index 98% rename from console/dispatcherhost.go rename to console/dispatcher_host.go index e48153525..f3e62dea3 100644 --- a/console/dispatcherhost.go +++ b/console/dispatcher_host.go @@ -25,7 +25,7 @@ import ( func init() { c := &CmdGetDispatcherHost{ - name: "dispatcherhost", + name: "dispatcher_host", rpcMethod: utils.ApierV1GetDispatcherHost, } commands[c.Name()] = c diff --git a/console/dispatcherhost_ids.go b/console/dispatcher_host_ids.go similarity index 97% rename from console/dispatcherhost_ids.go rename to console/dispatcher_host_ids.go index e8103c2b1..6e4dc653c 100644 --- a/console/dispatcherhost_ids.go +++ b/console/dispatcher_host_ids.go @@ -24,7 +24,7 @@ import ( func init() { c := &CmdGetDispatcherHostIDs{ - name: "dispatcherhost_ids", + name: "dispatcher_host_ids", rpcMethod: utils.ApierV1GetDispatcherHostIDs, } commands[c.Name()] = c diff --git a/console/dispatcherhost_remove.go b/console/dispatcher_host_remove.go similarity index 97% rename from console/dispatcherhost_remove.go rename to console/dispatcher_host_remove.go index c95975c95..808752910 100644 --- a/console/dispatcherhost_remove.go +++ b/console/dispatcher_host_remove.go @@ -24,7 +24,7 @@ import ( func init() { c := &CmdRemoveDispatcherHost{ - name: "dispatcherhost_remove", + name: "dispatcher_host_remove", rpcMethod: utils.ApierV1RemoveDispatcherHost, } commands[c.Name()] = c diff --git a/console/dispatcherhost_set.go b/console/dispatcher_host_set.go similarity index 97% rename from console/dispatcherhost_set.go rename to console/dispatcher_host_set.go index 739e5980c..f2427c376 100644 --- a/console/dispatcherhost_set.go +++ b/console/dispatcher_host_set.go @@ -25,7 +25,7 @@ import ( func init() { c := &CmdSetDispatcherHost{ - name: "dispatcherhost_set", + name: "dispatcher_host_set", rpcMethod: utils.ApierV1SetDispatcherHost, } commands[c.Name()] = c