watch: context based callbacks

This commit is contained in:
jaskaranSM 2020-04-16 13:00:35 +05:30
parent 120ca7538d
commit 8341fe08c8

View File

@ -30,12 +30,12 @@ def _watch(bot: Bot, update: Update, args: list, isTar=False):
@run_async
def watchTar(bot: Bot, update: Update, args: list):
_watch(bot, update, args, True)
def watchTar(update, context, args):
_watch(context.bot, update, args, True)
def watch(bot: Bot, update: Update, args: list):
_watch(bot, update, args)
def watch(update, context, args):
_watch(context.bot, update, args)
mirror_handler = CommandHandler(BotCommands.WatchCommand, watch,