mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-20 17:41:29 -07:00
10 lines
244 B
C#
10 lines
244 B
C#
namespace Bloxstrap
|
|
{
|
|
public static class GlobalCache
|
|
{
|
|
public static readonly Dictionary<string, Task> PendingTasks = new();
|
|
|
|
public static readonly Dictionary<string, string> ServerLocation = new();
|
|
}
|
|
}
|