2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-09 18:55:51 +00:00

Implement SQLite session storage

This commit is contained in:
bakatrouble
2019-02-26 21:06:30 +03:00
parent 260043d8ec
commit 03b92b3302
5 changed files with 159 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ from .ext import utils, Syncer, BaseClient
from .methods import Methods
from .session_storage import (
SessionDoesNotExist, SessionStorage, MemorySessionStorage, JsonSessionStorage,
StringSessionStorage
StringSessionStorage, SQLiteSessionStorage
)
log = logging.getLogger(__name__)