mox/moxio/syncdir_windows.go
Mechiel Lukkien 4b8b53e776
fix build for windows
found with "make buildall", it was broken since the change for reusable components.
2024-01-01 16:08:50 +01:00

12 lines
257 B
Go

package moxio
import (
"github.com/mjl-/mox/mlog"
)
// SyncDir opens a directory and syncs its contents to disk.
// SyncDir is a no-op on Windows.
func SyncDir(log mlog.Log, dir string) error {
// todo: how to sync a directory on windows?
return nil
}