Files
CMLeonOS/shell/Commands/FileSystem/LsCommand.cs
2026-02-04 20:13:21 +08:00

11 lines
231 B
C#

namespace CMLeonOS.Commands.FileSystem
{
public static class LsCommand
{
public static void ProcessLs(CMLeonOS.FileSystem fileSystem, string args)
{
fileSystem.ListFiles(args);
}
}
}