Fixed spamwatch import

This commit is contained in:
Lucas Gabriel 2024-06-02 22:14:44 +00:00
parent 0cdcc28d3e
commit 2b30f34475

View File

@ -4,7 +4,7 @@ const path = require('path');
const token = process.env.TGBOT_TOKEN;
const bot = new TelegramBot(token, { polling: true });
const { isBlocked } = require('./blocklist');
const { isOnSpamWatch } = require('./blocklist');
const { isOnSpamWatch } = require('./spamwatch');
require('./logger');
const commandsPath = path.join(__dirname, 'commands');