aboutsummaryrefslogtreecommitdiff
path: root/src/call/mod.rs
blob: 83de339b375bcfe80bbca7225e64fdbf02da723c (plain) (blame)
1
2
3
4
5
6
7
// A call to the API.
pub trait Call: Into<xmlrpc::Value> {
    fn method_name(&self) -> &'static str;
    fn expected(&self) -> &'static [i32];
}

pub mod account;