UNPKG

telegram-node-bot

Version:
22 lines (18 loc) 319 B
'use strict' const BaseCommand = require('./BaseCommand') class AnyCommand { /** * @param {Scope} scope * @returns {boolean} */ test(scope) { return true } /** * @returns {string} */ get handlerName() { return 'handle' } } module.exports = AnyCommand