radix-clis 1.4.0

A collection of CLIs for developing, building and testing Scrypto code, from the Radix DLT project.
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(windows)]
use colored::*;
use radix_clis::error::exit_with_error;
use radix_clis::replay;

pub fn main() {
    #[cfg(windows)]
    control::set_virtual_terminal(true).unwrap();
    if let Err(msg) = replay::run() {
        exit_with_error(msg, 1)
    }
}