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