systemprompt-content 0.21.1

Markdown content management, sources, and event tracking for systemprompt.io AI governance dashboards. Governed publishing pipeline for the MCP governance platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Scheduled content jobs.
//!
//! Exposes [`execute_content_ingestion`], the job entry point that ingests
//! configured content sources into the content store.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod content_ingestion;

pub use content_ingestion::execute_content_ingestion;