1 2 3 4 5 6 7 8 9 10 11
#![allow(clippy::result_large_err)] #[cfg(windows)] use colored::*; use radix_clis::scrypto_bindgen; pub fn main() -> Result<(), scrypto_bindgen::Error> { #[cfg(windows)] control::set_virtual_terminal(true).unwrap(); scrypto_bindgen::run() }