Skip to main content

paladin_content/
lib.rs

1//! # paladin-content
2//!
3//! Content processing adapters and application services for the Paladin framework.
4//! Provides document parsing, HTTP/file fetching, RSS/news ingestion, and
5//! content analysis pipelines.
6
7#![warn(missing_docs)]
8
9/// Infrastructure adapters for content ingestion and parsing.
10#[allow(missing_docs)]
11pub mod adapters;
12/// Application services for content processing workflows.
13#[allow(missing_docs)]
14pub mod services;