сделал ревью системы
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-28 22:13:47 +10:00
parent c564140428
commit 25f2c09064
18 changed files with 1169 additions and 712 deletions

20
api/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
"""
API модуль приложения
"""
from .schemas import (
ParserOneRequest,
Parserall,
Parserall_url,
Source,
DownloadRange
)
from .routes import setup_routes
__all__ = [
'ParserOneRequest',
'Parserall',
'Parserall_url',
'Source',
'DownloadRange',
'setup_routes'
]