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