Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/IServerStartup.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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);
}
}