mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
18 lines
249 B
Go
18 lines
249 B
Go
|
|
// +build windows
|
||
|
|
|
||
|
|
package apps
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
// lock file
|
||
|
|
func LockFile(fp *os.File) error {
|
||
|
|
return errors.New("not implemented on windows")
|
||
|
|
}
|
||
|
|
|
||
|
|
func UnlockFile(fp *os.File) error {
|
||
|
|
return errors.New("not implemented on windows")
|
||
|
|
}
|