feat(bot): config key to toggle local cache lookups

This commit is contained in:
alyssa 2024-10-17 01:55:35 +09:00
parent 20ab671f98
commit 84652d6e3d
3 changed files with 21 additions and 16 deletions

View file

@ -22,6 +22,7 @@ public class BotConfig
public bool UseRedisRatelimiter { get; set; } = false;
public string? HttpCacheUrl { get; set; }
public bool HttpUseInnerCache { get; set; } = false;
public string? RedisGatewayUrl { get; set; }