2021-11-27 02:10:56 +00:00
|
|
|
namespace Myriad.Gateway;
|
|
|
|
|
|
|
|
public record GatewaySettings
|
2020-12-22 12:15:26 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +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;
|
2021-11-27 02:10:56 +00:00
|
|
|
public int? MaxShardConcurrency { get; init; }
|
|
|
|
public string? GatewayQueueUrl { get; init; }
|
2020-12-22 12:15:26 +00:00
|
|
|
}
|