Skip to main content

strat9_kernel/shell/commands/net/
ifconfig.rs

1use super::*;
2
3/// Ifconfig command entrypoint.
4pub fn cmd_ifconfig(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_ifconfig_impl(args)
6}