⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/services/csi/
mod.rs

1//! Container Storage Interface (CSI) implementation
2//!
3//! Provides volume lifecycle management including controller operations,
4//! node staging/publishing, and snapshot support.
5
6#![allow(dead_code)]
7
8pub mod controller;
9pub mod node;
10pub mod snapshot;