mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
12 lines
124 B
Go
12 lines
124 B
Go
|
package internet
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// FileLocker is UDS access lock
|
||
|
type FileLocker struct {
|
||
|
path string
|
||
|
file *os.File
|
||
|
}
|