chore(backend): format

This commit is contained in:
sam 2025-02-28 16:53:53 +01:00
parent 7d6d4631b8
commit cd24196cd1
Signed by: sam
GPG key ID: B4EF20DDE721CAA1

View file

@ -23,8 +23,11 @@ public class EmailRateLimiter
{
private readonly ConcurrentDictionary<string, RateLimiter> _limiters = new();
private readonly FixedWindowRateLimiterOptions _limiterOptions =
new() { Window = TimeSpan.FromHours(2), PermitLimit = 3 };
private readonly FixedWindowRateLimiterOptions _limiterOptions = new()
{
Window = TimeSpan.FromHours(2),
PermitLimit = 3,
};
private RateLimiter GetLimiter(string bucket) =>
_limiters.GetOrAdd(bucket, _ => new FixedWindowRateLimiter(_limiterOptions));