Files
cunicu/pkg/watcher/watcher_others.go
Steffen Vogel dad8d5996b update Go module path
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-09-08 17:42:12 +02:00

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
}