filelocker.go 124 B

1234567891011
  1. package internet
  2. import (
  3. "os"
  4. )
  5. // FileLocker is UDS access lock
  6. type FileLocker struct {
  7. path string
  8. file *os.File
  9. }