This commit is contained in:
levina 2021-09-13 22:10:10 +07:00 committed by GitHub
parent 64197ce4d6
commit a6e1a244a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,6 @@ import logging
import time
import sys
import asyncio
import uvloop
import glob
import importlib
from pathlib import Path
@ -31,7 +30,6 @@ loop = asyncio.get_event_loop()
_path = f"bot/*.py"
files = glob.glob(_path)
def load_plugins(plugin_name):
path = Path(f"bot/{plugin_name}.py")
name = "bot.{}".format(plugin_name)
@ -41,7 +39,6 @@ def load_plugins(plugin_name):
sys.modules[f"bot." + plugin_name] = load
print("Imported => " + plugin_name)
async def start():
print('\n')
print('------------------- Initalizing VC BOT ---------------------')
@ -62,10 +59,16 @@ async def start():
print(' and Bot =>> {}'.format((await bot.get_me()).first_name))
print('-----------------------------------------------------')
await idle()
print('[INFO]: STOPPING BOT')
if __name__ == "__main__":
uvloop.install()
if __name__ == '__main__':
is_bot = bool(Veez.BOT_TOKEN)
loop.run_until_complete(start())
# bot.start()
# print("[STATUS]:✅ »» BOT CLIENT STARTED ««")
# app.start()
# print("[STATUS]:✅ »» USERBOT CLIENT STARTED ««")
# call_py.start()
# print("[STATUS]:✅ »» PYTGCALLS CLIENT STARTED ««")
# idle()
# print("[STATUS]:❌ »» BOT STOPPED ««")