Skip to main content

strat9_kernel/shell/commands/vfs/
mount.rs

1use super::*;
2
3/// Mount filesystems and schemes.
4pub fn cmd_mount(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_mount_impl(args)
6}