返回 DeepSeek-Reasonix
native_other.go
根目录 / internal / fileops / native_other.go
1 //go:build !windows
2
3 package fileops
4
5 import "os"
6
7 func diskNativeSnapshot(string) (string, []string) { return "", nil }
8 func diskNativeHandleSnapshot(*os.File) (string, []string) {
9 return "", nil
10 }
11
11 lines GO