ya_client/
lib.rs

1//! Yagna REST API client async binding
2
3#[macro_use]
4pub mod web;
5
6pub mod activity;
7pub mod identity;
8pub mod market;
9pub mod net;
10pub mod payment;
11
12pub mod error;
13pub use error::Error;
14
15#[cfg(feature = "cli")]
16pub mod cli;
17
18#[cfg(feature = "sgx")]
19mod sgx;
20#[cfg(feature = "sgx")]
21pub use sgx::SGX_CONFIG;
22
23pub type Result<T> = std::result::Result<T, Error>;
24
25pub use ya_client_model as model;