veridian_kernel/services/cri/mod.rs
1//! Container Runtime Interface (CRI) implementation
2//!
3//! Provides gRPC-based container runtime services including pod sandbox
4//! management, container lifecycle, image management, and exec/attach
5//! streaming.
6
7#![allow(dead_code)]
8
9pub mod grpc;
10pub mod image;
11pub mod runtime;
12pub mod streaming;