lambda-forge 0.1.7

An opinionated API Framework for building AWS Lambda HTTP endpoints.
Documentation
1
2
3
4
5
6
7
8
use crate::EndpointMetadata;

/// All the context needed for a runtime handler to function with.
pub struct RuntimeContext<T, D = ()> {
    pub event: T,
    pub meta: EndpointMetadata,
    pub database: D,
}