Organize imports (#127)

* Organize imports

* Organize imports
This commit is contained in:
chroventer
2020-10-02 01:35:48 -07:00
committed by GitHub
parent 93c57dd4a8
commit 3fab966208
32 changed files with 186 additions and 203 deletions
+3 -4
View File
@@ -1,8 +1,7 @@
import type { StatusType } from "../types/discord.ts";
import { ActivityType } from "../types/activity.ts";
import { sendGatewayCommand } from "../module/shardingManager.ts";
import { encode } from "../../deps.ts";
import { sendGatewayCommand } from "../module/shardingManager.ts";
import { ActivityType } from "../types/activity.ts";
import type { StatusType } from "../types/discord.ts";
export const sleep = (timeout: number) => {
return new Promise((resolve) => setTimeout(resolve, timeout));