Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/IServerStartup.cs
2025-05-18 13:04:45 +08:00

18 lines
441 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Microsoft.Extensions.DependencyInjection;
namespace HordeServer
{
/// <summary>
/// Interface for the main server startup class. Can be used by commands that want to instantiate server services.
/// </summary>
public interface IServerStartup
{
/// <summary>
/// Configure services for the server
/// </summary>
void ConfigureServices(IServiceCollection services);
}
}