19 lines
491 B
Python
19 lines
491 B
Python
"""Самодостаточное in-memory хранилище сессий."""
|
|
|
|
from .add_file import add_file
|
|
from .cleanup import cleanup
|
|
from .create_session import create_session
|
|
from .get_files import file_count, get_files
|
|
from .state import MAX_FILE_BYTES, MAX_SESSION_BYTES, TTL_SECONDS, configure
|
|
|
|
__all__ = [
|
|
"create_session",
|
|
"add_file",
|
|
"get_files",
|
|
"file_count",
|
|
"cleanup",
|
|
"configure",
|
|
"TTL_SECONDS",
|
|
"MAX_FILE_BYTES",
|
|
"MAX_SESSION_BYTES",
|
|
] |