Go to file
2024-04-27 16:53:49 +08:00
builtins 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
dependence 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
handler Support run_preprocessor hook funcs 2024-03-25 20:11:18 +08:00
override 💄 Format with black 24.x.x 2024-03-16 18:44:26 +08:00
plugin Support run_preprocessor hook funcs 2024-03-25 20:11:18 +08:00
services Support history data service 2024-04-27 16:53:49 +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 run_preprocessor hook funcs 2024-03-25 20:11:18 +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 🔧 Add official bots to config 2023-12-18 16:59:01 +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 Support on_called_api hook funcs 2024-01-20 22:07:23 +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"""