mirror of
https://github.com/NotAShelf/catApi.git
synced 2025-02-23 11:59:47 +00:00
8 lines
163 B
Go
8 lines
163 B
Go
//go:build darwin
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// note: this constant is not defined on BSD
|
|
const openMode = unix.O_EVTONLY | unix.O_CLOEXEC
|