2f64e30dd1
Co-authored-by: Gelu Vrabie <gelu@exolabs.net>
5 lines
179 B
Python
5 lines
179 B
Python
"""Database implementations for event storage."""
|
|
|
|
from .sqlite import AsyncSQLiteEventStorage, EventStorageProtocol
|
|
|
|
__all__ = ["AsyncSQLiteEventStorage", "EventStorageProtocol"] |