mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
c8447dca56
Also update all use of 'go get' => 'go install', update CI tooling for 1.18 compatibility, and gofmt everything so lint passes. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
11 lines
162 B
Go
11 lines
162 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package loadbalancer
|
|
|
|
import "syscall"
|
|
|
|
func reusePort(network, address string, conn syscall.RawConn) error {
|
|
return nil
|
|
}
|