diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-05-14 09:09:52 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-05-14 09:09:52 +0200 |
commit | 3bf41b06ae6ec9a558d3b1f1f315509ccef97010 (patch) | |
tree | 2d0d03da4e9d344c5de5dc01f11b5900025dff35 /ipc/uapi_bsd.go | |
parent | 3147f000897be94066069c1a703272b7e282a015 (diff) |
global: regroup all imports
Diffstat (limited to 'ipc/uapi_bsd.go')
-rw-r--r-- | ipc/uapi_bsd.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc/uapi_bsd.go b/ipc/uapi_bsd.go index f66c386..75cc0e3 100644 --- a/ipc/uapi_bsd.go +++ b/ipc/uapi_bsd.go @@ -10,11 +10,12 @@ package ipc import ( "errors" "fmt" - "golang.org/x/sys/unix" "net" "os" "path" "unsafe" + + "golang.org/x/sys/unix" ) var socketDirectory = "/var/run/wireguard" |