Source code for eventsourcing.application.command

from eventsourcing.application.process import ProcessApplication
from eventsourcing.domain.model.command import Command


[docs]class CommandProcess(ProcessApplication): persist_event_type = Command.Event