From 843765647ccaf6e0c6df4be502660ac1753ef682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Susa=C3=B1a?= Date: Sat, 30 Jul 2022 14:07:07 -0400 Subject: [PATCH] Update README.md resolve import problem --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 21226c2..9edf241 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ that you should not make software that does things it is not supposed to do. ### Example bot (TS/JS) ```js -import { Session, GatewayIntents } from '@biscuitland/core'; +import { Session } from '@biscuitland/core'; +import { GatewayIntents } from '@biscuitland/api-types'; const intents = GatewayIntents.MessageContent | GatewayIntents.Guilds | GatewayIntents.GuildMessages; const session = new Session({ token: 'your token', intents });