Crate fl8

Crate fl8 

Source
Expand description

fl8 — Lightweight cloud-agnostic infrastructure in Rust 🦀

§Example

use fl8::{Stack, Resource};

let mut stack = Stack::new("example");
stack.add(Resource::new("example-bucket", "aws_s3_bucket"));
stack.plan();
stack.launch();

Re-exports§

pub use resource::Resource;
pub use stack::Stack;

Modules§

resource
stack