mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-06 14:03:56 +00:00
9 lines
221 B
C#
9 lines
221 B
C#
namespace CleanArchitecture.IntegrationTests.Constants;
|
|
|
|
public static class Configuration
|
|
{
|
|
public const int RedisPort = 6379;
|
|
public const int PostgresSqlPort = 5432;
|
|
public const int RabbitMqPort = 5672;
|
|
}
|