AirLibrary/Indexing/State/mod.rs
1//! # State Module
2//!
3//! ## File: Indexing/State/mod.rs
4//!
5//! ## Role in Air Architecture
6//!
7//! Provides state management for the File Indexer service, including
8//! creation and update operations for index structures.
9//!
10//! ## Modules
11//!
12//! - `CreateState` - State structure creation and initialization
13//! - `UpdateState` - State modification and update operations
14
15pub mod CreateState;
16pub mod UpdateState;