systemprompt-files 0.14.3

File storage, metadata, and access control for systemprompt.io AI governance infrastructure. Governed file operations for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Persistence layer for the files domain.
//!
//! Exposes [`FileRepository`], the SQLx-backed entry point for file rows and
//! their content associations, together with its [`InsertFileRequest`] builder
//! and [`FileStats`] aggregate.

mod ai;
mod content;
mod file;

pub use file::{FileRepository, FileStats, InsertFileRequest};