seamapi-rs 0.1.1

A Rust client for Seam
Documentation
1
2
3
4
5
6
7
8
9
use seamapi_rs::Seam;

fn main() {
    let seamapi = Seam::new(None, None).unwrap();

    let workspace = seamapi.workspace().get().unwrap();

    println!("{:?}", workspace);
}