usenetlify_lambda::{lambda, Context};useserde_json::Value;typeError=Box<dyn std::error::Error +Send+Sync+'static>;// #[lambda] attribute removes the need for boilerplate code
// required by `lambda::run(func).await?` as demonstrated in other
// examples.
#[lambda]#[tokio::main]
async fnmain(event: Value, _: Context)->Result<Value, Error>{Ok(event)}