AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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