diff --git a/src/AltGen.Console/Config/RemoveConfigCommand.cs b/src/AltGen.Console/Config/RemoveConfigCommand.cs new file mode 100644 index 0000000..b645230 --- /dev/null +++ b/src/AltGen.Console/Config/RemoveConfigCommand.cs @@ -0,0 +1,16 @@ +namespace AltGen.Console.Config; + +sealed class RemoveConfigCommand() : AsyncCommand +{ + public class Settings : CommandSettings + { + [CommandArgument(1, "")] + [Description("The provider to remove.")] + public string Provider { get; init; } = string.Empty; + } + + public override async Task ExecuteAsync(CommandContext context, Settings settings) + { + return 0; + } +} \ No newline at end of file