summary refs log tree commit diff
path: root/src/util/connections/ConnectionStore.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2022-12-22 10:05:51 -0500
committerPuyodead1 <puyodead@proton.me>2023-03-18 19:09:51 -0400
commit21bfda32e452c05b8906bf318df7415d6cd5acd0 (patch)
tree997f6ff0dd5ec6969cfea270776e4d96f1d82820 /src/util/connections/ConnectionStore.ts
parentMerge pull request #1005 from Xanderplayz18/patch-1 (diff)
downloadserver-21bfda32e452c05b8906bf318df7415d6cd5acd0.tar.xz
add connections
Diffstat (limited to 'src/util/connections/ConnectionStore.ts')
-rw-r--r--src/util/connections/ConnectionStore.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util/connections/ConnectionStore.ts b/src/util/connections/ConnectionStore.ts
new file mode 100644

index 00000000..406e8232 --- /dev/null +++ b/src/util/connections/ConnectionStore.ts
@@ -0,0 +1,5 @@ +import Connection from "./Connection"; + +export class ConnectionStore { + public static connections: Map<string, Connection> = new Map(); +}