this/storage/
mod.rs

1//! Storage implementations for different backends
2
3#[cfg(feature = "dynamodb")]
4pub mod dynamodb;
5pub mod in_memory;
6
7#[cfg(feature = "dynamodb")]
8pub use dynamodb::{DynamoDBDataService, DynamoDBLinkService};
9pub use in_memory::InMemoryLinkService;