bloxstrap/Bloxstrap/GlobalCache.cs
pizzaboxer 43ab5626ee
Finish up on Axell's work
caching, better presentation, etc
2024-09-29 20:11:04 +01:00

10 lines
250 B
C#

namespace Bloxstrap
{
public static class GlobalCache
{
public static readonly Dictionary<string, string?> ServerLocation = new();
public static readonly Dictionary<long, ThumbnailResponse> UserThumbnails = new();
}
}