lambda-forge 0.1.7

An opinionated API Framework for building AWS Lambda HTTP endpoints.
Documentation
mod action;
pub use action::EndpointAction;

mod endpoint;
pub use endpoint::{EndpointMetadata, EndpointMetadataBuilder};

mod application;
pub use application::RuntimeContext;

mod error;
pub use error::Error;

mod response;
pub use response::ApiResponseBody;

#[cfg(feature = "db")]
pub mod database;

pub use lambda_http as http;
pub use serde_json;
#[cfg(feature = "db")]
pub use sqlx;
pub use tokio;

#[cfg(feature = "non-http")]
pub use lambda_http::lambda_runtime;