1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-06 19:40:51 +02:00
seaweedfs/weed/storage/backend/disk_file_others.go
2022-08-10 08:21:57 -07:00

10 lines
164 B
Go

//go:build !linux && !darwin
// +build !linux,!darwin
package backend
// Using default sync operation
func (df *DiskFile) Sync() error {
return df.File.Sync()
}