mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-26 10:57:34 +02:00
This lets us include the package on those platforms in a followup commit where we split out a conn package from device. It also lets us run `go test ./...` when developing on macOS. Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
8 lines
106 B
Go
8 lines
106 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package rwcancel
|
|
|
|
type RWCancel struct {
|
|
}
|
|
|
|
func (*RWCancel) Cancel() {}
|