github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/simplefs/platform.go (about) 1 //go:build (!darwin && !windows) || ios 2 // +build !darwin,!windows ios 3 4 package simplefs 5 6 import "golang.org/x/net/context" 7 8 // Quarantine is for adding the mark of the web. 9 func Quarantine(ctx context.Context, path string) error { 10 return nil 11 } 12 13 func limitFilenameLengthForWindowsDownloads(filename string) string { 14 return filename 15 }