Files
ccn/Packages/Infrastructure/Sources/Public/Extensions/Int+Constants.swift
T

10 lines
334 B
Swift
Raw Normal View History

extension Int {
/// A namespace for the rate limit's default configuration values.
public enum RateLimit {
/// The default number of requests admitted per client per window.
public static let limit = 5
/// The default window length, in seconds (1 minute).
public static let window = 60
}
}