mhf-server/Mhf.Cli/Command/Commands/ExitCommand.cs
2019-11-24 19:43:35 +08:00

17 lines
419 B
C#

using Mhf.Cli.Argument;
namespace Mhf.Cli.Command.Commands
{
public class ExitCommand : ConsoleCommand
{
public override CommandResultType Handle(ConsoleParameter parameter)
{
Logger.Info("Exiting...");
return CommandResultType.Exit;
}
public override string Key => "exit";
public override string Description => "Closes the program";
}
}