domo 0.3.2

The Domo Rust SDK wrapping our APIs. Also includes a CLI application.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod buzz;
pub mod dataset;
pub mod integration;

pub struct Client {}

/// Client initialization and helper methods
impl Client {
    pub fn new() -> Self {
        Self {}
    }
}

impl Default for Client {
    fn default() -> Self {
        Self::new()
    }
}