diff options
author | Wolfy-J <[email protected]> | 2019-06-24 13:35:04 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-06-24 13:35:04 +0300 |
commit | 5dc7dd6b231ccea05ffbec0df47ecaa866192308 (patch) | |
tree | 7959b582590bfbe15205480e64de2f14de2d6b47 /util | |
parent | 464baf2eb7bd87ed80332280e8f73faa2d495746 (diff) |
polishing fastcgi integration, polishing headers service (splitted from http)
Diffstat (limited to 'util')
-rw-r--r-- | util/network.go | 4 |
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 +} |