mirror of
https://github.com/LBRYFoundation/reflector.go.git
synced 2025-08-23 09:17:24 +00:00
9 lines
115 B
Go
9 lines
115 B
Go
// +build linux
|
|
|
|
package store
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var openFileFlags = os.O_WRONLY | os.O_CREATE | syscall.O_DIRECT
|