//! fl8 — Lightweight cloud-agnostic infrastructure in Rust 🦀
//!
//! # Example
//! ```no_run
//! use fl8::{Stack, Resource};
//!
//! let mut stack = Stack::new("example");
//! stack.add(Resource::new("example-bucket", "aws_s3_bucket"));
//! stack.plan();
//! stack.launch();
//! ```
pub use Resource;
pub use Stack;