2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-09-06 00:55:21 +00:00
Files
the-guard-bot/handlers/regex/index.js

12 lines
257 B
JavaScript
Raw Normal View History

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