This commit is contained in:
jxxghp
2023-09-28 17:29:21 +08:00
parent 3999c64853
commit 989d6e3fe7
2 changed files with 11 additions and 2 deletions

View File

@ -1,6 +1,8 @@
from typing import Any, List, Dict, Tuple
from app.core.event import eventmanager, Event
from app.plugins import _PluginBase
from app.schemas.types import EventType
class PersonMeta(_PluginBase):
@ -80,6 +82,13 @@ class PersonMeta(_PluginBase):
def get_page(self) -> List[dict]:
pass
@eventmanager.register(EventType.TransferComplete)
def scrap_rt(self, event: Event):
"""
根据事件实时刮削演员信息
"""
pass
def stop_service(self):
"""
退出插件