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