mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-26 21:01:14 +08:00
15 lines
324 B
Go
15 lines
324 B
Go
// SPDX-FileCopyrightText: 2023-2025 Steffen Vogel <post@steffenvogel.de>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build !(linux || freebsd || darwin)
|
|
|
|
package link
|
|
|
|
func CreateWireGuardLink(_ string) (Link, error) {
|
|
return nil, errNotSupported
|
|
}
|
|
|
|
func FindLink(_ string) (Link, error) {
|
|
return nil, errNotSupported
|
|
}
|