sc-api 0.1.1

A library to interact with the SC API
Documentation
1
2
3
4
5
6
7
8
9
use sc_api::BASE_URL;

/**

* As get_regions_list does not require authentication, it is not a method of any client.
*/
#[tokio::main]
async fn main() {
    println!("{:?}", sc_api::get_regions_list(BASE_URL).await.unwrap());
}