(b, m)
| 25 | |
| 26 | @Client.on_message(filters.command('logs') & filters.user(Config.ADMIN)) |
| 27 | async def log_file(b, m): |
| 28 | try: |
| 29 | await m.reply_document('BotLog.txt') |
| 30 | except Exception as e: |
| 31 | await m.reply(str(e)) |
| 32 | |
| 33 | @Client.on_message(filters.command("addpremium") & filters.user(Config.ADMIN)) |
| 34 | async def add_premium(client, message): |
nothing calls this directly
no outgoing calls
no test coverage detected