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