systemprompt-content 0.14.0

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
//! Parameter builders for content and link mutations.
//!
//! Groups the create/update parameter types consumed by the repository layer:
//! content via [`CreateContentParams`] / [`UpdateContentParams`], and links via
//! [`CreateLinkParams`], [`RecordClickParams`], and [`TrackClickParams`].

pub mod content;
pub mod link;

pub use content::{CategoryIdUpdate, CreateContentParams, UpdateContentParams};
pub use link::{CreateLinkParams, RecordClickParams, TrackClickParams};