use std::process::ExitCode; fn main() -> ExitCode { println!("Burrow for Windows is not ready yet."); println!("This release stub exists so the Windows lane can exercise signing, packaging, and upload plumbing before the native client lands."); println!("Install a Linux or Apple build for a functional Burrow client today."); ExitCode::from(64) }