примерно получилось

This commit is contained in:
2026-02-25 22:44:27 +05:00
parent 5b536dfbe3
commit 0e838358f0
5 changed files with 2173 additions and 1 deletions

View File

@@ -1543,6 +1543,11 @@ async function initializeServer() {
apiKeysModule(app, db, upload);
console.log('✅ Модуль API ключей подключен');
// 10. Подключаем API клиент для внешних сервисов
const apiClient = require('./api-client');
apiClient(app, db, upload);
console.log('✅ API клиент для внешних сервисов подключен');
// 10. Помечаем сервер как готовый
serverReady = true;