indodax_cli/
integration.rs1pub use crate::client::IndodaxClient;
5pub use crate::config::{IndodaxConfig, ResolvedCredentials, SecretValue};
6pub use crate::errors::IndodaxError;
7#[cfg(feature = "cli")]
8pub use crate::output::{CommandOutput, OutputFormat};
9
10pub mod sdk {
15 pub use crate::client::IndodaxClient;
16 pub use crate::config::{IndodaxConfig, ResolvedCredentials, SecretValue};
17 pub use crate::errors::IndodaxError;
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}