PluralKit/Myriad/Gateway/GatewaySettings.cs

10 lines
308 B
C#
Raw Normal View History

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