chore: stub out remove command

This commit is contained in:
Stevan Freeborn
2025-02-24 22:53:55 -06:00
parent ba1d668ade
commit 22eb9a7c87
@@ -0,0 +1,16 @@
namespace AltGen.Console.Config;
sealed class RemoveConfigCommand() : AsyncCommand<RemoveConfigCommand.Settings>
{
public class Settings : CommandSettings
{
[CommandArgument(1, "<provider>")]
[Description("The provider to remove.")]
public string Provider { get; init; } = string.Empty;
}
public override async Task<int> ExecuteAsync(CommandContext context, Settings settings)
{
return 0;
}
}