summary refs log tree commit diff
path: root/src/util/connections/ConnectionStore.ts
blob: 759b6de71058f542cd431764ef0b71d2ea7c192b (plain) (blame)
1
2
3
4
5
6
7
import Connection from "./Connection";
import RefreshableConnection from "./RefreshableConnection";

export class ConnectionStore {
	public static connections: Map<string, Connection | RefreshableConnection> =
		new Map();
}