Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
416 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Server
{
/// <summary>
/// Allows subsystems to advertise the version of bundled tools via the /server/info endpoint
/// </summary>
public interface IAgentVersionProvider
{
/// <summary>
/// Returns the version number of the Horde agent
/// </summary>
Task<string?> GetAsync(CancellationToken cancellationToken = default);
}
}