seg 0.1.0

seg is a cli tool for analyzing binaries and generating structured reports to help ai agents and security researchers understand and exploit them.
use colored::Colorize;

pub fn splash() -> String {
    let version = env!("CARGO_PKG_VERSION");

    //source :https://patorjk.com/
    let logo = format!(
        r#"
╔═╝╔═╝╔═╝
══║╔═╝║ ║
══╝══╝══╝ v{}
    Analyze. Understand. Exploit binaries
                @pwnwriter/seg
 "#,
        version
    )
    .purple();

    format!("{logo}")
}