1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-15 03:53:33 +02:00
Xray-core/transport/internet/filelocker.go

12 lines
124 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package internet
import (
"os"
)
// FileLocker is UDS access lock
type FileLocker struct {
path string
file *os.File
}