Newer
Older
percord / src / util / connections / ConnectionStore.ts
@Puyodead1 Puyodead1 on 19 Mar 2023 138 bytes add connections
import Connection from "./Connection";

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