mirror of
https://github.com/PaiGramTeam/GramCore.git
synced 2024-11-22 14:27:18 +00:00
xtaodada
1fe8a5efee
Co-authored-by: 洛水居室 <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: LittleMengBot <79637933+LittleMengBot@users.noreply.github.com> Co-authored-by: Nahida <NaHCOx@icloud.com> Co-authored-by: SiHuan <sihuan@sakuya.love> Co-authored-by: Chuangbo Li <im@chuangbo.li> Co-authored-by: zhxy-CN <admin@owo.cab> Co-authored-by: =?UTF-8?q?=E8=89=BE=E8=BF=AA?= <62269186+AnotiaWang@users.noreply.github.com>
496 B
496 B
core 目录说明
关于 Service
服务 Service
需定义在 services
文件夹下, 并继承 core.service.Service
每个 Service
都应包含 start
和 stop
方法, 且这两个方法都为异步方法
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"""