首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
dirlock_windows.go
】的更多相关文章
dirlock_windows.go
package dirlock type DirLock struct { dir string } func New(dir string) *DirLock { return &DirLock{ dir: dir, } } func (l *DirLock) Lock() error { return nil } func (l *DirLock) Unlock() error { return nil }…