mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 08:02:26 -06:00 
			
		
		
		
	This allows for building GoToSocial with [SQLite transpiled to WASM](https://github.com/ncruces/go-sqlite3) and accessed through [Wazero](https://wazero.io/).
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 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)
 | 
						|
}
 |