Files
UnrealEngine/Engine/Source/Programs/Horde/HordeCmd/Commands/UninstallCommand.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
433 B
C#

// 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
{
/// <inheritdoc/>
public override Task<int> ExecuteAsync(ILogger logger)
{
InstallCommand.Execute(false);
return Task.FromResult(0);
}
}
}