(bot, userid, token)
| 58 | return str(shortened_verify_url) |
| 59 | |
| 60 | async def verify_user(bot, userid, token): |
| 61 | user = await bot.get_users(userid) |
| 62 | TOKENS[user.id] = {token: True} |
| 63 | tz = pytz.timezone('Asia/Kolkata') |
| 64 | today = date.today() |
| 65 | VERIFIED[user.id] = str(today) |
| 66 | |
| 67 | async def check_verification(bot, userid): |
| 68 | user = await bot.get_users(userid) |