fakecloud_cloudformation/lib.rs
1pub mod extras;
2pub mod resource_provisioner;
3pub(crate) mod service;
4pub(crate) mod state;
5pub mod template;
6pub mod xml_responses;
7
8pub use service::{CloudFormationDeps, CloudFormationService};
9pub use state::{
10 CloudFormationSnapshot, SharedCloudFormationState, CLOUDFORMATION_SNAPSHOT_SCHEMA_VERSION,
11};