why was that v16???

This commit is contained in:
Ean Milligan (Bastion) 2023-04-28 23:27:05 -04:00
parent 69486b5595
commit c2c7737119
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
// All external dependencies are to be loaded here to make updating dependency versions much easier
import { getBotIdFromToken } from 'https://deno.land/x/discordeno@16.0.1/mod.ts';
import { getBotIdFromToken } from 'https://deno.land/x/discordeno@17.0.1/mod.ts';
import config from './config.ts';
import { LOCALMODE } from './flags.ts';
export const botId = getBotIdFromToken(LOCALMODE ? config.localToken : config.token);