mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
added storages to __init__.py file to improve DX
This commit is contained in:
parent
1c0207e1d1
commit
5d0f6a9dfb
1 changed files with 11 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
||||||
|
from .base import BaseStorage
|
||||||
|
from .memory import MemoryStorage
|
||||||
|
from .mongo import MongoStorage
|
||||||
|
from .redis import RedisStorage
|
||||||
|
|
||||||
|
__all__ = (
|
||||||
|
"BaseStorage",
|
||||||
|
"MemoryStorage",
|
||||||
|
"RedisStorage",
|
||||||
|
"MongoStorage",
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue