mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-05 08:47:03 +08:00
12 lines
159 B
Go
12 lines
159 B
Go
//go:build !linux
|
|
|
|
package watcher
|
|
|
|
import (
|
|
"github.com/stv0g/cunicu/pkg/errors"
|
|
)
|
|
|
|
func (w *Watcher) watchKernel() error {
|
|
return errors.ErrNotSupported
|
|
}
|