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
//! Scheduled jobs for the files domain.
//!
//! Exposes [`FileIngestionJob`], which scans the configured storage directory
//! and registers discovered image files in the database.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod file_ingestion;

pub use file_ingestion::FileIngestionJob;