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;