vizo 1.0.0

Visualize structured data formats in a more pretty way.
Documentation
1
2
3
4
5
6
7
8
use colored::Colorize;
use vizo::app::run;

fn main() {
    if let Err(e) = run() {
        println!("{}: {}", "error".red().bold(), e);
    }
}