Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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 = "";
}
}