quicknode-cli 0.1.9

Command-line interface for the Quicknode SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Library entry point for the `qn` CLI.
//!
//! This module exists so integration tests can call into the CLI in-process.
//! See `tests/common/mod.rs` for the test harness.

pub mod cli;
pub mod context;
pub mod errors;
pub mod output;

pub(crate) mod commands;
pub(crate) mod config;
pub(crate) mod confirm;
pub(crate) mod retry;
pub(crate) mod time_arg;

pub use cli::Cli;
pub use errors::CliError;