Configuration for Broker.

This commit is contained in:
2025-07-05 08:46:30 +02:00
parent 5534b00097
commit f96de8936d
9 changed files with 195 additions and 0 deletions

View File

@ -0,0 +1,16 @@

namespace MessengerBroker.Configuration.Sources.Environment
{
public class Constants
{
public static class EnvironmentVariables
{
public const string API_PERSISTENCE_TYPE = nameof(API_PERSISTENCE_TYPE);
public const string API_SQL_CONNECTIONSTRING = nameof(API_SQL_CONNECTIONSTRING);
public const string API_NPG_CONNECTIONSTRING = nameof(API_NPG_CONNECTIONSTRING);
public const string BROKER_ID = nameof(BROKER_ID);
public const string MASTER_SERVERS = nameof(MASTER_SERVERS);
public const string SLAVE_SERVERS = nameof(SLAVE_SERVERS);
}
}
}