feat(bot): add config setting to disable connecting to discord gateway

This commit is contained in:
alyssa 2025-03-22 15:38:21 +00:00
parent cc7122e389
commit 7cd3939f95
2 changed files with 6 additions and 3 deletions

View file

@ -25,6 +25,7 @@ public class BotConfig
public bool HttpUseInnerCache { get; set; } = false;
public string? HttpListenerAddr { get; set; }
public bool DisableGateway { get; set; } = false;
public string? DiscordBaseUrl { get; set; }
public string? AvatarServiceUrl { get; set; }