PluralKit/Myriad/Gateway/GatewaySettings.cs

10 lines
308 B
C#
Raw Normal View History

namespace Myriad.Gateway;
public record GatewaySettings
2020-12-22 13:15:26 +01:00
{
public string Token { get; init; }
public GatewayIntent Intents { get; init; }
2022-01-13 12:26:25 -05:00
public bool UseRedisRatelimiter { get; init; } = false;
public int? MaxShardConcurrency { get; init; }
public string? GatewayQueueUrl { get; init; }
2020-12-22 13:15:26 +01:00
}