Skip to main content

strat9_kernel/shell/commands/sys/
health.rs

1use super::*;
2
3/// Display system health information.
4pub fn cmd_health(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_health_impl(args)
6}