entrenar/sovereign/registry/mod.rs
1//! Offline Model Registry (ENT-017)
2//!
3//! Provides local model storage and verification for air-gapped deployments.
4
5mod manifest;
6mod offline;
7mod types;
8
9#[cfg(test)]
10mod tests;
11
12// Re-export all public types to preserve the public API
13pub use manifest::RegistryManifest;
14pub use offline::OfflineModelRegistry;
15pub use types::{ModelEntry, ModelSource};