PaiGram/core
2023-03-14 12:19:09 +08:00
..
builtins ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
dependence ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
handler ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
override ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
plugin 🐛 Fix incorrect passing of context 2023-03-14 12:19:09 +08:00
services 🐛 Fix incorrect addition of admin list to cache 2023-03-14 12:15:19 +08:00
sqlmodel ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
__init__.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
application.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
base_service.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
basemodel.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
config.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
error.py 🎨 使用 black 格式化所有代码 2022-10-10 19:07:28 +08:00
manager.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
README.md ♻ 更新V3版本 2022-09-08 09:08:37 +08:00

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