aboutsummaryrefslogtreecommitdiff
path: root/src/call/mod.rs
blob: f8fe0a29a49679bcdea93c0af9f36fd68c75692d (plain) (blame)
1
2
3
4
5
6
7
8
// A call to the API.
pub trait Call: Clone + std::fmt::Debug + Into<xmlrpc::Value> {
    fn method_name(&self) -> String;
    fn expected(&self) -> Vec<i32>;
}

pub mod account;
pub mod nameserver;