Document scraper integration field fix

This commit is contained in:
m.nazemi
2026-05-02 17:44:56 +03:30
parent 81191656df
commit 0bd5e41b70
4 changed files with 11 additions and 66 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ func main() {
tedConfig := buildTEDConfig(&conf.TED)
scraperService := scraper.NewServiceWithTED(conf.Scraper.BaseURL, conf.Scraper.Timeout, logger, mongoManager, noticeRepository, notificationSDK, tedConfig)
kanbanService := kanban.NewService(boardRepository, columnRepository, cardRepository, logger)
documentScraperService := document_scraper.NewService(tenderRepository, noticeRepository, logger)
documentScraperService := document_scraper.NewService(tenderRepository, logger)
logger.Info("Services initialized successfully", map[string]interface{}{
"services": []string{"customer", "user", "company", "category", "tender", "feedback", "tender_approval", "inquiry", "flag", "notification", "contact", "cms", "scraper", "kanban", "document_scraper"},
})