diff options
author | Valery Piashchynski <[email protected]> | 2020-10-26 11:50:12 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-26 11:50:12 +0300 |
commit | 9aae9e2009bad07ebdee73e1c6cf56901d07880a (patch) | |
tree | 0ad9537bd438c63719fb83343ab77fc4ab34eb83 /plugins/rpc | |
parent | db7695463e85faf3fba6a2767b2dfa6ef916785d (diff) |
Fix linters warnings
Diffstat (limited to 'plugins/rpc')
-rwxr-xr-x | plugins/rpc/rpc.go | 3 | ||||
-rwxr-xr-x | plugins/rpc/rpc_test.go | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rpc/rpc.go b/plugins/rpc/rpc.go index a17b569f..0f6c9753 100755 --- a/plugins/rpc/rpc.go +++ b/plugins/rpc/rpc.go @@ -1,11 +1,12 @@ package rpc import ( + "net/rpc" + "github.com/spiral/endure" "github.com/spiral/endure/errors" "github.com/spiral/goridge/v2" "github.com/spiral/roadrunner/v2/plugins/config" - "net/rpc" ) // RPCPluggable declares the ability to create set of public RPC methods. diff --git a/plugins/rpc/rpc_test.go b/plugins/rpc/rpc_test.go deleted file mode 100755 index 9ab1e3e8..00000000 --- a/plugins/rpc/rpc_test.go +++ /dev/null @@ -1 +0,0 @@ -package rpc |