agentmux_srv\registry/
mod.rs1#![allow(dead_code, unused_imports)]
19
20mod atomic;
21mod def_migrate;
22mod def_schema;
23mod def_store;
24mod migrate;
25mod paths;
26mod schema;
27mod store;
28
29#[cfg(test)]
30mod tests;
31
32pub use migrate::{
33 backfill_source_bases_once, migrate_from_sqlite_once, MigrateStats, SourceBackfillStats,
34};
35pub use paths::{
36 resolve_shared_definitions_dir, resolve_shared_registry_dir, resolve_shared_transcripts_dir,
37};
38pub use def_migrate::{migrate_definitions_global_once, DefMigrateStats};
39pub use def_schema::{
40 DefContentBlob, DefSkillBlob, DefValidationError, DefinitionRecord, DefinitionRecordV1,
41 DEF_MAX_SUPPORTED_SCHEMA, DEF_MIN_SUPPORTED_SCHEMA,
42};
43pub use def_store::{DefStoreError, DefinitionStore};
44pub use schema::{
45 NamedAgentRecord, NamedAgentRecordV1, ValidationError, MAX_SUPPORTED_SCHEMA,
46 MIN_SUPPORTED_SCHEMA,
47};
48pub use store::{Registry, RegistryError};