//go:build windows package hbrt import "fmt" // CLIDebugger returns a no-op debug callback on Windows. func CLIDebugger() DebugCallback { return func(event *DebugEvent) int { fmt.Println("[debugger not available on Windows]") return 0 // continue } }