Source code for mersal.outbox.config

from dataclasses import dataclass

from mersal.outbox.outbox_storage import OutboxStorage

__all__ = ("OutboxConfig",)


[docs] @dataclass class OutboxConfig: """Configuration for the outbox feature.""" storage: OutboxStorage "Sets the Outbox storage."