minlambda 0.2.0

Minimalist AWS Lambda runtime for Rust
Documentation
1
2
3
4
5
// This Lambda function just parses whatever the event value is and spits it back out again.

fn main() {
    minlambda::run_ok(|value: serde_json::Value| value)
}