zenlayercloud_sdk/lib.rs
1pub mod client;
2pub mod credentials;
3pub mod errors;
4pub mod signer;
5
6use std::env;
7
8pub use client::{Client, Request, Response};
9pub use errors::Error;
10
11pub static API_DOMAIN: &str = "console.zenlayer.com";
12pub static SDK_VERSION: &'static str = env!("CARGO_PKG_VERSION");
13
14pub struct Config {}