diff options
author | Valery Piashchynski <[email protected]> | 2021-01-11 13:00:52 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-11 13:00:52 +0300 |
commit | c4112cd214a9c7cbed82c82eefc75904fb42d1af (patch) | |
tree | 680cc5f0d3f9a0d78a944e026568af61c12bd87e /server_config.go | |
parent | 5dc83ef5eee77f4d1ef557e5f8b566e75892680d (diff) |
Update CI
Format imports and code
Distinct internal and app errors
Diffstat (limited to 'server_config.go')
-rw-r--r-- | server_config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server_config.go b/server_config.go index 32ff0ebc..ea4da8dd 100644 --- a/server_config.go +++ b/server_config.go @@ -3,7 +3,6 @@ package roadrunner import ( "errors" "fmt" - "github.com/spiral/roadrunner/osutil" "net" "os" "os/exec" @@ -11,6 +10,8 @@ import ( "sync" "syscall" "time" + + "github.com/spiral/roadrunner/osutil" ) // CommandProducer can produce commands. |