1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

//! Auto Scaling
//!
//! If you're using the service, you're probably looking for [AutoscalingClient](struct.AutoscalingClient.html) and [Autoscaling](trait.Autoscaling.html).

extern crate hyper;
extern crate rusoto_core;
extern crate xml;

mod generated;
mod custom;

pub use generated::*;
pub use custom::*;