mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -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();
|
|
}
|
|
}
|