Skip to main content

neo_decompiler/
cli.rs

1//! Command line interface for inspecting and decompiling Neo N3 NEF files.
2
3mod args;
4mod catalog;
5mod reports;
6mod runner;
7mod schema;
8
9pub use args::Cli;