otx-pool 0.1.0

The open transaction pool service core
Documentation
use ansi_term::Colour::Green;

pub fn print_logo() {
    println!(
        "{}",
        format_args!(
            r#"
            {}                   _____                               _   _             
            {}_ __   ___ _ __   |_   _| __ __ _ _ __  ___  __ _  ___| |_(_) ___  _ __  
            {} '_ \ / _ \ '_ \    | || '__/ _` | '_ \/ __|/ _` |/ __| __| |/ _ \| '_ \ 
            {} |_) |  __/ | | |   | || | | (_| | | | \__ \ (_| | (__| |_| | (_) | | | |
            {}| .__/ \___|_| |_|   |_||_|  \__,_|_| |_|___/\__,_|\___|\__|_|\___/|_| |_|
            {}|_|                                                                       
            "#,
            Green.bold().paint(r#"  ____  "#),
            Green.bold().paint(r#" / __ \ "#),
            Green.bold().paint(r#"| |  | |"#),
            Green.bold().paint(r#"| |__| |"#),
            Green.bold().paint(r#" \____/"#),
            Green.bold().paint(r#"       "#),
        )
    );
}