-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinotify.go
31 lines (28 loc) · 1.02 KB
/
inotify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// @@
// @ Author : Eacher
// @ Date : 2023-02-25 11:49:47
// @ LastEditTime : 2023-02-28 10:05:26
// @ LastEditors : Eacher
// @ --------------------------------------------------------------------------------<
// @ Description :
// @ --------------------------------------------------------------------------------<
// @ FilePath : /inotify/inotify.go
// @@
package inotify
import (
)
const (
IN_ATTRIB = in_ATTRIB
IN_CLOSE = in_CLOSE
IN_CLOSE_NOWRITE = in_CLOSE_NOWRITE
IN_CLOSE_WRITE = in_CLOSE_WRITE
IN_CREATE = in_CREATE
IN_DELETE = in_DELETE
IN_DELETE_SELF = in_DELETE_SELF
IN_MODIFY = in_MODIFY
IN_MOVE = in_MOVE
IN_MOVED_FROM = in_MOVED_FROM
IN_MOVED_TO = in_MOVED_TO
IN_MOVE_SELF = in_MOVE_SELF
IN_OPEN = in_OPEN
)