mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
9 lines
203 B
Go
9 lines
203 B
Go
|
package moxio
|
||
|
|
||
|
// SyncDir opens a directory and syncs its contents to disk.
|
||
|
// SyncDir is a no-op on Windows.
|
||
|
func SyncDir(dir string) error {
|
||
|
// todo: how to sync a directory on windows?
|
||
|
return nil
|
||
|
}
|