hexy-compat 0.1.0

HexView-compatible slash-flag CLI built on hexy-core.
1
2
3
4
5
6
7
8
9
10
use std::process::ExitCode;

pub use hexy_core::ops::{LogError, execute_log_commands, parse_log_commands};
pub use hexy_core::*;

mod args;

fn main() -> ExitCode {
    args::run()
}