aboutsummaryrefslogtreecommitdiff
path: root/src/call/mod.rs
blob: 51fca5ae629311a6effa4c6b25c273d1f341d36c (plain) (blame)
1
2
3
4
5
6
7
8
// 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;
pub mod nameserver;