mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
1e7b32490d
This allows for building GoToSocial with [SQLite transpiled to WASM](https://github.com/ncruces/go-sqlite3) and accessed through [Wazero](https://wazero.io/).
17 lines
345 B
Go
17 lines
345 B
Go
//go:build !windows
|
|
|
|
package osutil
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
)
|
|
|
|
// OpenFile behaves the same as [os.OpenFile],
|
|
// except on Windows it sets [syscall.FILE_SHARE_DELETE].
|
|
//
|
|
// See: https://go.dev/issue/32088#issuecomment-502850674
|
|
func OpenFile(name string, flag int, perm fs.FileMode) (*os.File, error) {
|
|
return os.OpenFile(name, flag, perm)
|
|
}
|