Files
git-pages/src/sys/flock_other.go
T
Catherine de3162bba2 Move OS-related modules into a sub-package. NFC
Historically git-pages did not use those, but the codebase is growing
a bit out of hand and it seems like a good place to start.
2026-05-28 15:37:51 +02:00

17 lines
208 B
Go

//go:build !unix
package os
import (
"fmt"
"os"
)
func FileLock(file *os.File) error {
return fmt.Errorf("unimplemented")
}
func FileUnlock(file *os.File) error {
return fmt.Errorf("unimplemented")
}