@@ -1,3 +1,4 @@
+//go:build windows
// +build windows
package fs
package proc
@@ -0,0 +1,10 @@
+// +build windows
+
+package proc
+import "context"
+func Done() <-chan struct{} {
+ return context.Background().Done()
+}
+//go:build !linux
// +build !linux
package stat