mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 04:52:26 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
8 lines
170 B
Go
8 lines
170 B
Go
//go:build freebsd || openbsd || netbsd || dragonfly
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC
|