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

16 lines
447 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Tests
{
/// <summary>
/// Settings used for debug tests
///
/// Put into a separate file to avoid accidental commit of credentials.
/// </summary>
public static class DebugSettings
{
public static readonly string DbUsername = "username-not-set";
public static readonly string DbPassword = "password-not-set";
public static readonly string DbHostname = "";
}
}