use lambda::{lambda, Context}; use serde_json::Value; // fails to compile because missing semi colon type Error = Box #[tokio::main] async fn main(event: Value, _: Context) -> Result { Ok(event) }