Files
AnonBot/database/__init__.py
Andrey 50be010026 realize full project
all function is working
added test (empty files for plan)
database schema
business logic
rate limitting
logging decorators
2025-09-06 18:34:57 +03:00

18 lines
257 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Пакет для работы с базой данных
"""
from .crud import (
UserCRUD,
QuestionCRUD,
UserBlockCRUD,
UserSettingsCRUD
)
__all__ = [
'UserCRUD',
'QuestionCRUD',
'UserBlockCRUD',
'UserSettingsCRUD'
]