Files
backrest/internal/resticinstaller/flockwindows.go
2023-12-07 11:27:58 -08:00

10 lines
222 B
Go

//go:build windows
// +build windows
package resticinstaller
func withFlock(lock string, do func() error) error {
// TODO: windows file locking. Not a major issue as locking is only needed for test runs.
return do()
}