summaryrefslogtreecommitdiff
path: root/util/network.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/network.go')
-rw-r--r--util/network.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/network.go b/util/network.go
index 4c393c37..510a97a9 100644
--- a/util/network.go
+++ b/util/network.go
@@ -1,10 +1,10 @@
package util
import (
+ "errors"
"net"
"strings"
"syscall"
- "errors"
)
func CreateListener(address string) (net.Listener, error) {
@@ -22,4 +22,4 @@ func CreateListener(address string) (net.Listener, error) {
}
return net.Listen(dsn[0], dsn[1])
-} \ No newline at end of file
+}