nsfwapp/backend/sharedelete_other.go
2026-01-13 14:00:05 +01:00

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)
}