1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-09 00:56:14 +02:00
youki/crates/container/src/syscall/mod.rs

11 lines
270 B
Rust

//! Contains a wrapper of syscalls for unit tests
//! This provides a uniform interface for rest of Youki
//! to call syscalls required for container management
pub mod linux;
#[allow(clippy::module_inception)]
pub mod syscall;
pub mod test;
pub use syscall::Syscall;