"""MeshBay Node — chat storage and relay. Encryption is the client's: the node holds an epoch key it delivers to members, and never a plaintext message. Not a ratchet — a key per group, per epoch, per device, for the reasons `meshbay_common/chatbox.py` sets out. """ from .store import ( FORMAT_PLAIN, FORMAT_SEALED_V1, ChatStore, ReplayedMessage, StoredMessage, ) __all__ = ["ChatStore", "StoredMessage", "ReplayedMessage", "FORMAT_PLAIN", "FORMAT_SEALED_V1"]