dynamo-es 0.5.0

A DynamoDB implementation of an event repository for cqrs-es.
Documentation
1
2
3
4
5
6
7
8
use cqrs_es::persist::PersistedEventStore;
use cqrs_es::CqrsFramework;

use crate::DynamoEventRepository;

/// A convenience type for a CqrsFramework backed by
/// [DynamoStore](struct.DynamoStore.html).
pub type DynamoCqrs<A> = CqrsFramework<A, PersistedEventStore<DynamoEventRepository, A>>;