PamGram/core
2022-09-19 23:31:17 +08:00
..
admin 🐛 修复模板复用不正确导致的错误并改进代码避免触发洪水模式 2022-09-18 01:33:11 +08:00
assets 🐛 修复模板复用不正确导致的错误并改进代码避免触发洪水模式 2022-09-18 01:33:11 +08:00
base
cookies
game
quiz
sign
template 🐛 修复模板复用不正确导致的错误并改进代码避免触发洪水模式 2022-09-18 01:33:11 +08:00
user
wiki
baseplugin.py 🎨 改进部分函数异常处理 2022-09-19 23:31:17 +08:00
bot.py
config.py
error.py
plugin.py
README.md
service.py

core 目录说明

关于 Service

服务 Service 需定义在 services 文件夹下, 并继承 core.service.Service

每个 Service 都应包含 startstop 方法, 且这两个方法都为异步方法

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"""