mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-20 15:35:47 +08:00
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
|
|
}
|