doapi 0.1.3

A wrapper library for the DigitalOcean API v2
pub use self::account::Account;
pub use self::action::{Action, Actions};
pub use self::backup::{Backup, Backups};
pub use self::domain::{Domain, Domains};
pub use self::dns::{DnsRecord, DnsRecords};
pub use self::droplet::{Droplet, Droplets};
pub use self::error::DoError;
pub use self::header::HeaderOnly;
pub use self::image::{Image, Images};
pub use self::kernel::{Kernel, Kernels};
pub use self::links::Links;
pub use self::meta::Meta;
pub use self::namedresponse::NamedResponse;
pub use self::neighbors::Neighbors;
pub use self::network::{Network, Networks};
pub use self::page::{NewIter, Pages, RawPagedResponse};
pub use self::region::{Region, Regions};
pub use self::size::{Size, Sizes};
pub use self::snapshot::{Snapshot, Snapshots};
pub use self::ssh_key::{SshKey, SshKeys};
pub use self::upgrades::{DropletUpgrade, DropletUpgrades, ResponseStringArray};

mod account;
mod header;
mod network;
mod kernel;
mod backup;
mod action;
mod page;
mod meta;
mod error;
mod features;
mod links;
mod ssh_key;
mod neighbors;
mod droplet;
mod domain;
mod image;
mod dns;
mod namedresponse;
mod snapshot;
mod region;
mod size;
mod upgrades;

pub trait NotArray {}