mirror of
https://codeberg.org/git-pages/git-pages.git
synced 2026-08-28 11:56:19 +00:00
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.
17 lines
208 B
Go
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")
|
|
}
|