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 /tun/tun_linux.go | |
parent | 3147f000897be94066069c1a703272b7e282a015 (diff) |
global: regroup all imports
Diffstat (limited to 'tun/tun_linux.go')
-rw-r--r-- | tun/tun_linux.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tun/tun_linux.go b/tun/tun_linux.go index 784cb9f..f5f7ec7 100644 --- a/tun/tun_linux.go +++ b/tun/tun_linux.go @@ -12,15 +12,16 @@ import ( "bytes" "errors" "fmt" - "golang.org/x/net/ipv6" - "golang.org/x/sys/unix" - "golang.zx2c4.com/wireguard/rwcancel" "net" "os" "sync" "syscall" "time" "unsafe" + + "golang.org/x/net/ipv6" + "golang.org/x/sys/unix" + "golang.zx2c4.com/wireguard/rwcancel" ) const ( |