chatwork 0.1.0

Chatwork API client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod status;
pub mod tasks;

crate::derive_service! {
    pub struct Service {
        pub(super) inner: crate::Client,
    }
}

impl Service {
    pub fn status(&self) -> status::Service {
        status::Service { inner: self.inner.clone() }
    }

    pub fn tasks(&self) -> tasks::Service {
        tasks::Service { inner: self.inner.clone() }
    }
}