Files
components/LiteCharms.Abstractions/Constants.cs
T
Khwezi Mngoma ff34326a53
continuous-integration/drone/pr Build is passing
Refactored database references
2026-05-09 16:58:34 +02:00

14 lines
440 B
C#

namespace LiteCharms.Abstractions;
public static class Constants
{
public const int QueueBounds = 100000;
public const string ShopSchedulerName = "shop";
public const string ShopSchedulerInstanceId = "golden-dawn";
public const string EmailServiceBus = nameof(EmailServiceBus);
public const string GeneralServiceBus = nameof(GeneralServiceBus);
public const string SalesServiceBus = nameof(SalesServiceBus);
}