1 2 3 4 5 6 7 8 9 10
//! File registry types for the unified graph architecture. //! //! This module provides: //! - [`FileId`]: Opaque handle for registered file paths //! //! The `FileRegistry` implementation is in the storage module (Step 7). pub mod id; pub use id::FileId;