refactor(emex): rewrite EMEX integration, add category fallback
Replace browser-based Puppeteer scraper with standalone scraper wrapper. Add EMEX as fallback source for categories when PL24 is unavailable. Update vehicle decoding to use new synchronous EMEX API. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { EmexService } from "./emex.service";
|
||||
import { EmexScraperService } from "./emex-scraper.service";
|
||||
import { EmexParserService } from "./emex-parser.service";
|
||||
import { EmexQueueService } from "./emex-queue.service";
|
||||
|
||||
@Module({
|
||||
providers: [EmexService, EmexScraperService, EmexParserService, EmexQueueService],
|
||||
providers: [EmexService],
|
||||
exports: [EmexService],
|
||||
})
|
||||
export class EmexModule {}
|
||||
|
||||
Reference in New Issue
Block a user