Source code for eventsourcing.example.infrastructure

from eventsourcing.example.domainmodel import AbstractExampleRepository
from eventsourcing.infrastructure.eventsourcedrepository import EventSourcedRepository


[docs]class ExampleRepository(EventSourcedRepository, AbstractExampleRepository): """ Event sourced repository for the Example domain model entity. """ __page_size__ = 1000