This library is designed to turn DynamoDB into an Event Store for Event Sourcing.
You can easily implement an Event Sourcing-enabled repository using EventStore.
```rust
pub struct UserAccountRepository {
event_store: EventStore
impl UserAccountRepository {
pub fn new(eventstore: EventStore
pub async fn store( &mut self, event: &UserAccountEvent, version: usize, snapshotopt: Option<&UserAccount>, ) -> Result<()> { self .eventstore .storeeventwithsnapshotopt(event, version, snapshot_opt) .await }
pub async fn findbyid(&self, id: &UserAccountId) -> Result