systemprompt_database/repository/mod.rs
1//! Repositories owned by the database crate itself.
2//!
3//! Only repositories that are part of the platform-level schema (services
4//! registry, cleanup utilities) live here. Domain repositories live in their
5//! respective domain crates.
6//!
7//! Copyright (c) systemprompt.io — Business Source License 1.1.
8//! See <https://systemprompt.io> for licensing details.
9
10pub mod base;
11pub mod cleanup;
12pub mod service;
13
14pub use base::PgDbPool;
15pub use cleanup::CleanupRepository;
16pub use service::{CreateServiceInput, ServiceConfig, ServiceRepository};