From f18c577bcdb65960724793d49319fa413bfec68b Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Tue, 24 Mar 2020 19:23:59 -0400 Subject: [PATCH] Update sharding_manager.ts --- module/sharding_manager.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)