mirror of
https://github.com/mjl-/mox.git
synced 2024-12-27 00:43:48 +03:00
4b8b53e776
found with "make buildall", it was broken since the change for reusable components.
12 lines
257 B
Go
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
|
|
}
|