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
12
13
14
//! 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`].
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod content;
pub mod link;

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