aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/install.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-05-14 09:09:01 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-05-14 09:20:29 +0200
commit3fef806e674f913b712e834269f20be1e678677b (patch)
tree8a16669f242614a3eb4f980ad499adc9ba73638a /service/install.go
parentservice: reuse golang.org/x/sys/windows address family constants (diff)
downloadwireguard-windows-3fef806e674f913b712e834269f20be1e678677b.tar.xz
wireguard-windows-3fef806e674f913b712e834269f20be1e678677b.zip
global: regroup all imports
Diffstat (limited to 'service/install.go')
-rw-r--r--service/install.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/service/install.go b/service/install.go
index e20658e9..a989ac0e 100644
--- a/service/install.go
+++ b/service/install.go
@@ -7,13 +7,14 @@ package service
import (
"errors"
+ "os"
+ "syscall"
+ "time"
+
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/svc"
"golang.org/x/sys/windows/svc/mgr"
"golang.zx2c4.com/wireguard/windows/conf"
- "os"
- "syscall"
- "time"
)
var cachedServiceManager *mgr.Mgr