1
package moxio
2
3
import (
4
"github.com/mjl-/mox/mlog"
5
)
6
7
// SyncDir opens a directory and syncs its contents to disk.
8
// SyncDir is a no-op on Windows.
9
func SyncDir(log mlog.Log, dir string) error {
10
// todo: how to sync a directory on windows?
11
return nil
12
}
13