Source code for eventsourcing.infrastructure.popo.factory

from eventsourcing.infrastructure.factory import InfrastructureFactory
from eventsourcing.infrastructure.popo.manager import PopoRecordManager


[docs]class PopoInfrastructureFactory(InfrastructureFactory): record_manager_class = PopoRecordManager