mvsep-api-tester 0.1.0

MVSep API tester - CLI tool for testing music separation API
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub fn init() {
    #[cfg(windows)]
    {
        if let Err(e) = colored::control::set_virtual_terminal(true) {
            eprintln!("Warning: Failed to enable virtual terminal: {:?}", e);
        }
    }

    #[cfg(not(windows))]
    let _ = ();
}