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