fl8 — Lightweight cloud-agnostic infrastructure in Rust 🦀
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::Resource;
pub use stack::Stack;