PaiGram/core
2024-06-04 19:32:11 +08:00
..
dependence 🐛 Fix new uid length when mask number 2024-05-04 22:47:44 +08:00
handler Support Ignore unbound user command in group 2024-03-25 20:48:19 +08:00
plugin Support Ignore unbound user command in group 2024-03-25 20:48:19 +08:00
services Support history data service remove same data 2024-06-04 19:32:11 +08:00
__init__.py ♻️ PaiGram V4 2023-03-14 09:27:22 +08:00
application.py ♻️ separate core code 2023-08-02 20:11:35 +08:00
base_service.py ♻️ separate core code 2023-08-02 20:11:35 +08:00
basemodel.py ♻️ separate core code 2023-08-02 20:11:35 +08:00
config.py ♻️ separate core code 2023-08-02 20:11:35 +08:00
error.py 💄 Format with black 24.x.x 2024-03-16 09:44:15 +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"""