refactor: реструктуризация — core/, db/, routes/, web/

guarddog_nexus/
├── core/          scanner, harvester, nexus, llm
├── db/            engine, models, queries
├── routes/        webhooks, api_*, web
└── web/           templates + static

- 11 файлов перемещено (git mv — сохранена история)
- Все импорты обновлены (~15 файлов)
- main.py, tests — исправлены пути
- 50/50 тестов, ruff clean
This commit is contained in:
Marker689
2026-05-10 07:17:41 +03:00
parent 22dc87851a
commit 8726b65808
21 changed files with 80 additions and 80 deletions

View File

@@ -5,8 +5,8 @@ import logging
import sys
from logging.handlers import SysLogHandler
from guarddog_nexus.config import config
from guarddog_nexus.constants import APP_PACKAGE
from .config import config
from .constants import APP_PACKAGE
class JsonFormatter(logging.Formatter):