From 342b01c7f51dbe8beef1d3deb37822080ed6097f Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 1 Jan 2022 17:03:48 -0500 Subject: a few things --- src/commands/utilities/hash.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/commands/utilities/hash.ts') diff --git a/src/commands/utilities/hash.ts b/src/commands/utilities/hash.ts index 7a1bfa7..7e892f5 100644 --- a/src/commands/utilities/hash.ts +++ b/src/commands/utilities/hash.ts @@ -1,6 +1,9 @@ import { BushCommand, type BushMessage } from '#lib'; +import assert from 'assert'; import crypto from 'crypto'; import got from 'got'; +assert(crypto); +assert(got); export default class HashCommand extends BushCommand { public constructor() { -- cgit