/** * Content Platform — `ContentService` + `provideValtechContent` (ADR-020). * * Modelo canónico unificado (`ContentDocument`, flat + Markdown) con origen * híbrido (estático build-time + backend DynamoDB/API). Render vía el * `markdown-article-parser` existente. */ export { ContentDocumentType, ContentDocumentStatus, ContentDocumentSource, ContentDocument, ContentDocumentAuthor, ContentStaticFactory, ValtechContentConfig, ContentLoadOptions, } from './types'; export { VALTECH_CONTENT_CONFIG, provideValtechContent } from './config'; export { ContentService } from './content.service';