diff options
-rw-r--r-- | _old/container.go (renamed from service/container.go) | 2 | ||||
-rw-r--r-- | _old/container_test.go (renamed from service/container_test.go) | 2 | ||||
-rw-r--r-- | _old/entry.go (renamed from service/entry.go) | 2 | ||||
-rw-r--r-- | _old/entry_test.go (renamed from service/entry_test.go) | 2 | ||||
-rw-r--r-- | service/rpc/config.go | 5 |
5 files changed, 7 insertions, 6 deletions
diff --git a/service/container.go b/_old/container.go index 77a6dfc0..daab7339 100644 --- a/service/container.go +++ b/_old/container.go @@ -1,4 +1,4 @@ -package service +package _old import ( "fmt" diff --git a/service/container_test.go b/_old/container_test.go index b3ec7054..2f860c41 100644 --- a/service/container_test.go +++ b/_old/container_test.go @@ -1,4 +1,4 @@ -package service +package _old import ( "errors" diff --git a/service/entry.go b/_old/entry.go index 497742d1..0b2ad33e 100644 --- a/service/entry.go +++ b/_old/entry.go @@ -1,4 +1,4 @@ -package service +package _old import ( "sync" diff --git a/service/entry_test.go b/_old/entry_test.go index b5c71a10..24538561 100644 --- a/service/entry_test.go +++ b/_old/entry_test.go @@ -1,4 +1,4 @@ -package service +package _old import ( "github.com/stretchr/testify/assert" diff --git a/service/rpc/config.go b/service/rpc/config.go index a4cf0f91..cc492622 100644 --- a/service/rpc/config.go +++ b/service/rpc/config.go @@ -2,10 +2,11 @@ package rpc import ( "errors" - "github.com/spiral/roadrunner/service" - "github.com/spiral/roadrunner/util" "net" "strings" + + "github.com/spiral/roadrunner/service" + "github.com/spiral/roadrunner/util" ) // Config defines RPC service config. |