indodax_cli/
integration.rs1pub use crate::client::IndodaxClient;
5pub use crate::config::{IndodaxConfig, ResolvedCredentials, SecretValue};
6pub use crate::errors::IndodaxError;
7pub use crate::output::{CommandOutput, OutputFormat};
8
9pub mod sdk {
14 pub use crate::client::IndodaxClient;
15 pub use crate::config::{IndodaxConfig, ResolvedCredentials, SecretValue};
16 pub use crate::errors::IndodaxError;
17 pub use crate::output::{CommandOutput, OutputFormat};
18
19 pub mod prelude {
21 pub use super::{
22 IndodaxClient, IndodaxConfig, IndodaxError, ResolvedCredentials, SecretValue,
23 };
24 }
25}
26
27pub mod prelude {
29 pub use super::{IndodaxClient, IndodaxConfig, IndodaxError, ResolvedCredentials, SecretValue};
30}
31
32#[cfg(all(feature = "cli", not(target_arch = "wasm32")))]
36pub mod cli {
37 pub use crate::output::{CommandOutput, OutputFormat};
38 pub use crate::{dispatch, map_anyhow_error, Cli, Command};
39}