dsq_cli/
lib.rs

1//! dsq-cli library
2//!
3//! Provides Config and Executor for programmatic use.
4
5#[cfg(all(not(target_arch = "wasm32"), feature = "cli"))]
6mod cli;
7mod config;
8mod executor;
9
10pub use config::Config;
11pub use executor::Executor;