unc_cli_rs/
lib.rs

1#![allow(clippy::arc_with_non_send_sync)]
2pub use common::CliResult;
3
4pub mod commands;
5pub mod common;
6pub mod config;
7pub mod js_command_match;
8pub mod network;
9pub mod network_for_transaction;
10pub mod network_view_at_block;
11pub mod transaction_signature_options;
12pub mod types;
13pub mod utils_command;
14
15#[derive(Debug, Clone)]
16pub struct GlobalContext {
17    pub config: crate::config::Config,
18    pub offline: bool,
19}