mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
17 lines
419 B
C#
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";
|
|
}
|
|
}
|