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
//! Link services.
//!
//! Pairs link creation with click analytics: [`LinkGenerationService`] mints
//! trackable campaign links, and `LinkAnalyticsService` reports on the clicks
//! and conversions those links accrue.

pub mod analytics;
pub mod generation;

pub use analytics::LinkAnalyticsService;
pub use generation::{GenerateLinkParams, LinkGenerationService};