multiversx_sc_meta_lib/cli.rs
1mod cli_args_build;
2mod cli_args_contract;
3mod cli_contract_main;
4
5pub use cli_args_build::*;
6pub use cli_args_contract::*;
7pub use cli_contract_main::*;
8
9pub trait CliArgsToRaw {
10 /// Converts to a list of raw arguments, as they would be called in a command.
11 fn to_raw(&self) -> Vec<String>;
12}