chore: stub out remove command
This commit is contained in:
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user