mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2026-04-22 22:57:04 +08:00
dad8d5996b
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
16 lines
290 B
Go
16 lines
290 B
Go
//go:build !(linux || freebsd || darwin)
|
|
|
|
package device
|
|
|
|
import (
|
|
"github.com/stv0g/cunicu/pkg/errors"
|
|
)
|
|
|
|
func FindKernelDevice(name string) (Device, error) {
|
|
return nil, errors.ErrNotSupported
|
|
}
|
|
|
|
func NewKernelDevice(name string) (Device, error) {
|
|
return nil, errors.ErrNotSupported
|
|
}
|