chore(dev): ensure project compiles on darwin and windows

This commit is contained in:
Quentin McGaw
2026-02-09 15:40:45 +00:00
parent 5f0c499808
commit b0a75673bd
6 changed files with 16 additions and 0 deletions
@@ -1,3 +1,5 @@
//go:build !windows
package mod
import (
+7
View File
@@ -0,0 +1,7 @@
//go:build !linux
package mod
func Probe(moduleName string) error {
panic("not implemented")
}