// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using Microsoft.Extensions.Logging;
namespace Horde.Commands
{
[Command("uninstall", "Removes the directory containing the tool from the PATH environment variable.")]
class UinstallCommand : Command
{
///
public override Task ExecuteAsync(ILogger logger)
{
InstallCommand.Execute(false);
return Task.FromResult(0);
}
}
}