coda-api 0.3.0

Coda API client
Documentation
1
2
3
4
5
6
7
use crate::Client;

#[test]
fn new_with_key() {
    let client = Client::new_with_key("YOUR_API_KEY").unwrap();
    assert_eq!(client.raw.baseurl, "https://coda.io/apis/v1");
}