Skip to main content

a3s_box_runtime/volume/
mod.rs

1//! Volume management for persistent named volumes.
2//!
3//! Provides `VolumeStore` for persisting volume state and
4//! managing volume data directories.
5
6mod store;
7
8pub use store::VolumeStore;