diff options
author | Valery Piashchynski <[email protected]> | 2020-12-27 00:59:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-27 00:59:10 +0300 |
commit | 8df4896deabdab9a50a5ad3c6da6e1c7f05922af (patch) | |
tree | c2fa71733902b999c02e5abd608bff4bc7449c5c /plugins/rpc/config.go | |
parent | 1aaf6e6ffb015cd5a21d9d938ad84c18723973c5 (diff) |
Util -> Utils
Diffstat (limited to 'plugins/rpc/config.go')
-rw-r--r-- | plugins/rpc/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rpc/config.go b/plugins/rpc/config.go index 719fd5e3..d7531435 100644 --- a/plugins/rpc/config.go +++ b/plugins/rpc/config.go @@ -5,7 +5,7 @@ import ( "net" "strings" - "github.com/spiral/roadrunner/v2/util" + "github.com/spiral/roadrunner/v2/utils" ) // Config defines RPC service config. @@ -35,7 +35,7 @@ func (c *Config) Valid() error { // Listener creates new rpc socket Listener. func (c *Config) Listener() (net.Listener, error) { - return util.CreateListener(c.Listen) + return utils.CreateListener(c.Listen) } // Dialer creates rpc socket Dialer. |