mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
No EOL
308 B
C#
10 lines
No EOL
308 B
C#
namespace Myriad.Gateway;
|
|
|
|
public record GatewaySettings
|
|
{
|
|
public string Token { get; init; }
|
|
public GatewayIntent Intents { get; init; }
|
|
public bool UseRedisRatelimiter { get; init; } = false;
|
|
public int? MaxShardConcurrency { get; init; }
|
|
public string? GatewayQueueUrl { get; init; }
|
|
} |