systemprompt-database 0.8.0

PostgreSQL infrastructure for systemprompt.io AI governance. SQLx-backed pool, generic repository traits, and compile-time query verification. Part of the systemprompt.io AI governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Repository over the platform-wide `services` registry table.
//!
//! Split into:
//! - `model` — row type ([`ServiceConfig`]) and write-input
//!   ([`CreateServiceInput`]).
//! - `repo` — [`ServiceRepository`] async methods.

mod model;
mod repo;

pub use model::{CreateServiceInput, ServiceConfig};
pub use repo::ServiceRepository;