systemprompt-files 0.21.1

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

mod ai;
mod content;
mod file;

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