diff options
author | 2023-01-26 09:26:50 -0600 | |
---|---|---|
committer | 2023-01-26 09:26:50 -0600 | |
commit | 16130275d04909c0e52a92c1fa477ac324172845 (patch) | |
tree | dae2570db8c9cd0b2da46a5ea736a1efb9301927 | |
parent | Initial import from wireguard-go 380ee85 (diff) | |
download | wintun-go-16130275d04909c0e52a92c1fa477ac324172845.tar.xz wintun-go-16130275d04909c0e52a92c1fa477ac324172845.zip |
global: move go:build line to top
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | dll.go | 4 | ||||
-rw-r--r-- | session.go | 4 | ||||
-rw-r--r-- | wintun.go | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -1,10 +1,10 @@ +//go:build windows + /* SPDX-License-Identifier: MIT * * Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. */ -//go:build windows - package wintun import ( @@ -1,10 +1,10 @@ +//go:build windows + /* SPDX-License-Identifier: MIT * * Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. */ -//go:build windows - package wintun import ( @@ -1,10 +1,10 @@ +//go:build windows + /* SPDX-License-Identifier: MIT * * Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. */ -//go:build windows - package wintun import ( |