mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 10:23:38 +02:00
NestJS-based web crawler service for structured content extraction. Features: - Depth-controlled crawling with URL pattern filtering - robots.txt compliance - HTML/PDF/Markdown content extraction - BullMQ job queue for async processing - Redis caching layer - Prometheus metrics
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { MetricsController } from './metrics.controller';
|
|
import { MetricsService } from './metrics.service';
|
|
|
|
@Module({
|
|
controllers: [MetricsController],
|
|
providers: [MetricsService],
|
|
exports: [MetricsService],
|
|
})
|
|
export class MetricsModule {}
|