mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 12:51:35 +00:00
0c62cc8b27
⚙️ 获取 Redis cookies 池函数从 `zrevrange` 替代为 `zrange` 🐛 修复 fakeredis 无效 📝优化文本描述 🎨 提高代码质量 Co-authored-by: 洛水居室 <luoshuijs@outlook.com> |
||
---|---|---|
.. | ||
admin | ||
base | ||
cookies | ||
game | ||
quiz | ||
sign | ||
template | ||
user | ||
wiki | ||
baseplugin.py | ||
bot.py | ||
config.py | ||
error.py | ||
plugin.py | ||
README.md | ||
service.py |
core 目录说明
关于 Service
服务 Service
需定义在 services
文件夹下, 并继承 core.service.Service
每个 Service
都应包含 start
和 stop
方法, 且这两个方法都为异步方法
from core.service import Service
class TestService(Service):
def __init__(self):
"""do something"""
async def start(self, *args, **kwargs):
"""do something"""
async def stop(self, *args, **kwargs):
"""do something"""