2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-09-05 16:45:18 +00:00
Files
the-guard-bot/handlers/regex/index.js

12 lines
273 B
JavaScript
Raw Normal View History

'use strict';
2021-05-07 22:46:11 +02:00
const { Telegraf: { compose, hears } } = require('telegraf');
/* eslint-disable global-require */
module.exports = compose([
hears(/^(?:[/@!](report|admins?))\b/i, require('../commands/report')),
2018-02-02 20:37:23 +01:00
require('./runCustomCmd'),
require('./groupLinker'),
]);