1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/LibMatrix.Utilities.Bot/Interfaces/ICommand.cs b/Utilities/LibMatrix.Utilities.Bot/Interfaces/ICommand.cs
index 7065683..82439e8 100644
--- a/Utilities/LibMatrix.Utilities.Bot/Interfaces/ICommand.cs
+++ b/Utilities/LibMatrix.Utilities.Bot/Interfaces/ICommand.cs
@@ -1,4 +1,4 @@
-namespace LibMatrix.Utilities.Bot.Interfaces;
+namespace LibMatrix.Utilities.Bot.Interfaces;
public interface ICommand {
public string Name { get; }
@@ -7,6 +7,6 @@ public interface ICommand {
public Task<bool> CanInvoke(CommandContext ctx) {
return Task.FromResult(true);
}
-
+
public Task Invoke(CommandContext ctx);
-}
\ No newline at end of file
+}
|