mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fill fsm/storage/__init__.py
This commit is contained in:
parent
c418689dc1
commit
30418186f1
1 changed files with 22 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
from .base import BaseEventIsolation, BaseStorage, StorageKey
|
||||
from .memory import (
|
||||
DisabledEventIsolation,
|
||||
MemoryStorage,
|
||||
MemoryStorageRecord,
|
||||
SimpleEventIsolation,
|
||||
)
|
||||
from .redis import DefaultKeyBuilder, KeyBuilder, RedisEventIsolation, RedisStorage
|
||||
|
||||
__all__ = (
|
||||
"StorageKey",
|
||||
"BaseStorage",
|
||||
"BaseEventIsolation",
|
||||
"MemoryStorageRecord",
|
||||
"MemoryStorage",
|
||||
"DisabledEventIsolation",
|
||||
"SimpleEventIsolation",
|
||||
"KeyBuilder",
|
||||
"DefaultKeyBuilder",
|
||||
"RedisStorage",
|
||||
"RedisEventIsolation",
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue