12 lines
166 B
Go
12 lines
166 B
Go
// backend\sharedelete_other.go
|
|
|
|
//go:build !windows
|
|
|
|
package main
|
|
|
|
import "os"
|
|
|
|
func openForReadShareDelete(path string) (*os.File, error) {
|
|
return os.Open(path)
|
|
}
|