mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-10-21 16:27:15 +08:00
24 lines
300 B
Python
24 lines
300 B
Python
# 点餐功能
|
||
from .order import *
|
||
|
||
# 新闻功能
|
||
from .news import *
|
||
|
||
# 随机图片功能
|
||
from .random_img import *
|
||
|
||
# 处理好友和群请求功能
|
||
from .auto_handle import *
|
||
|
||
# 对联功能
|
||
from .couplets import *
|
||
|
||
|
||
# 如果不需要某项功能,将其from xx import * 注释掉即可
|
||
|
||
|
||
|
||
|
||
|
||
|