Skip to main content

rivet_adapter_lambda/
lib.rs

1//! AWS Lambda runtime adapter for rivet applications.
2//!
3//! This crate provides a worker-like developer experience for Lambda by exposing
4//! a one-time `configure` step and per-invocation `handle` entrypoint.
5
6mod adapter;
7mod converters;
8mod error;
9mod options;
10
11pub use adapter::{configure, configure_with_options, handle, serve};
12pub use error::AdapterError;
13pub use options::AdapterOptions;