Files
alt-gen/src/AltGen.Console/Config/RemoveConfigCommand.cs
T

16 lines
422 B
C#
Raw Normal View History

2025-02-24 22:53:55 -06:00
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;
}
}