Foundation data models for systemprompt.io AI governance infrastructure. Shared DTOs, config, and domain types consumed by every layer of the MCP governance pipeline.
//! Boxed error and result aliases used by pluggable provider trait
//! abstractions.
pubtypeProviderError=Box<dyn std::error::Error +Send+Sync+'static>;pubtypeProviderResult<T>=Result<T, ProviderError>;