PluralKit/Myriad/Gateway/GatewaySettings.cs

9 lines
227 B
C#
Raw Normal View History

2020-12-22 12:15:26 +00:00
namespace Myriad.Gateway
{
public record GatewaySettings
{
public string Token { get; init; }
public GatewayIntent Intents { get; init; }
public int? MaxShardConcurrency { get; init; }
2020-12-22 12:15:26 +00:00
}
}