mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-18 13:35:56 +00: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
|
||
|
|
}
|