From 7425e722dda29ac1fe749152be661e80fd52d8bf Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Wed, 4 Feb 2026 18:52:43 +0800 Subject: [PATCH] namespace --- shell/CommandList.cs | 2 +- shell/Shell.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/CommandList.cs b/shell/CommandList.cs index 3081a85..d9d50b9 100644 --- a/shell/CommandList.cs +++ b/shell/CommandList.cs @@ -1,4 +1,4 @@ -namespace CMLeonOS +namespace CMLeonOS.shell { public static class CommandList { diff --git a/shell/Shell.cs b/shell/Shell.cs index 3552ad1..8c034ec 100644 --- a/shell/Shell.cs +++ b/shell/Shell.cs @@ -110,7 +110,7 @@ namespace CMLeonOS private void ProcessCommand(string command, string args) { - CommandList.ProcessCommand(this, command, args); + shell.CommandList.ProcessCommand(this, command, args); } public void ProcessEcho(string args)