mu_runtime/lib.rs
1//! An alternative AWS Lambda runtime for Rust. It was written based on the official
2//! `lambda_runtime` and was designed to be used along with the trustworthy
3//! `aws_lambda_event` crate.
4//!
5//! The idea behind this crate is to provide an easy-to-use api for AWS Serverless Developers,
6//! leveraging enterprise-grade semantics in the powerful Rust ecosystem.
7
8pub use runtime::*;
9pub use model::Context;
10pub use error::Error;
11
12// Modules
13pub mod runtime;
14pub mod model;
15pub mod lambda_api;
16pub mod error;
17