diff --git a/module/sharding_manager.ts b/module/sharding_manager.ts index 1f971dffd..f9663b293 100644 --- a/module/sharding_manager.ts +++ b/module/sharding_manager.ts @@ -1,4 +1,6 @@ -import { WebSocket } from "https://deno.land/std/ws/mod.ts"import { Client_Options } from "../types/options" +import { WebSocket } from "https://deno.land/std/ws/mod.ts" +import { Client_Options } from "../types/options.ts" + export const spawnShards = (total: number, id = 1) => { // this.ShardingManager.spawnShard(id); if (id < total) spawnShards(total, id + 1)