mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-08 08:32:25 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
9 lines
163 B
Go
9 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
|