1//! Scheduler module. 2//! 3//! This module provides the kernel's scheduling system, which is responsible for 4//! managing tasks and their execution. 5//! 6 7pub mod scheduler; 8pub mod dispatcher;