This commit is contained in:
Yasir Aris M 2023-10-01 22:22:38 +07:00 committed by GitHub
parent 714a31cb0d
commit 0ec90ad951
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -13,4 +13,7 @@ from .stickerset import *
from .subscene_helper import *
from .time_gap import *
from .tools import *
from .ytdl_helper import *
from .ytdl_helper import *
from misskaty import app
app.fetch = fetch

View file

@ -10,8 +10,7 @@ import sys
from logging import getLogger
from os.path import basename, dirname, isfile
from misskaty import app, MOD_LOAD, MOD_NOLOAD
from misskaty.helper.http import fetch
from misskaty import MOD_LOAD, MOD_NOLOAD
LOGGER = getLogger("MissKaty")
@ -49,7 +48,6 @@ def __list_all_modules():
return all_modules
app.fetch = fetch
LOGGER.info("[INFO]: IMPORTING PLUGINS")
importlib.import_module("misskaty.plugins.__main__")