LittlePaimon/Paimon_Plugins/__init__.py
2022-06-09 21:57:56 +08:00

29 lines
435 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# # 点餐功能
# from .order import *
#
# # 新闻功能
# from .news import *
#
# # 随机图片功能
# from .random_img import *
#
# # 处理好友和群请求功能
# from .auto_handle import *
#
# # 对联功能
# from .couplets import *
#
# from .help import help_
# 如果不需要某项功能将其from xx import * 注释掉即可
from nonebot import load_plugins
import os
load_plugins(os.path.dirname(__file__))