minlambda 0.2.0

Minimalist AWS Lambda runtime for Rust
Documentation
1
2
3
4
5
// This handler does nothing. It's here as a good example for ignoring the input event.

fn main() {
    minlambda::run_ok(|_: serde::de::IgnoredAny| ())
}