Go to file
2024-09-27 22:36:19 +08:00
builtins 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
dependence Support webhook 2024-06-23 00:27:16 +08:00
handler 🐛 Fix handler type hint in python-telegram-bot v21.6 2024-09-27 22:36:19 +08:00
plugin Support query player when only player_id 2024-07-12 21:54:01 +08:00
services Support gacha log rank 2024-09-12 16:18:05 +08:00
__init__.py ♻️ Change to git submodule 2023-08-05 10:41:12 +08:00
.gitignore separate core code 2023-07-31 22:10:37 +08:00
application.py Support webhook 2024-06-23 00:27:16 +08:00
base_service.py ♻️ Change to git submodule 2023-08-05 10:41:12 +08:00
basemodel.py ♻️ Change to git submodule 2023-08-05 10:41:12 +08:00
config.py Support webhook 2024-06-23 00:27:16 +08:00
error.py 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
LICENSE Initial commit 2023-07-31 20:34:34 +08:00
manager.py 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
pyproject.toml Support migrate user data 2023-12-16 17:36:19 +08:00
ratelimiter.py ♻️ Use AIORateLimiter Refactor RateLimiter 2024-07-19 21:38:54 +08:00
README.md ♻️ Change to git submodule 2023-08-05 10:41:12 +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"""