mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
11 lines
231 B
C#
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);
|
|
}
|
|
}
|
|
}
|