Files
UnrealEngineUWP/Engine/Source/Programs/Horde/HordeServerTests/DebugSettings.cs
Ben Marsh 5abbc95b6e Add missing copyright notices.
[CL 16160939 by Ben Marsh in ue5-main branch]
2021-04-29 15:35:57 -04:00

16 lines
469 B
C#

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