digitalocean 0.1.1

A pure Rust DigitalOcean API binding.
Documentation
1
2
3
4
5
6
7
8
extern crate dotenv;
extern crate env_logger;

pub fn before() {
    // Setup for tests
    dotenv::dotenv().ok();
    env_logger::try_init().ok();
}