AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
mode.go
根目录
/
internal
/
filelock
/
mode.go
1
package filelock
2
3
// Mode selects exclusive vs shared advisory locking. ModeExclusive is the
4
// zero value so existing Acquire callers keep exclusive semantics.
5
type Mode int
6
7
const (
8
ModeExclusive Mode = iota
9
ModeShared
10
)
11
11 lines
GO