1/* 2A supercluster is a cluster of 2 or more Conat servers. Each conat server may itself 3internally be a cluster using the socketio cluster module, or redis streams or pub/sub. 4*/ 5 6import type { Client } from "./client"; 7 8export class SuperClusterLink { 9 constructor(private client: Client) { 10 console.log(this.client); 11 } 12} 13 14