mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 19:57:04 +08:00
27 lines
450 B
Python
27 lines
450 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
|
|
from .context import BasePlugin as Plugin
|
|
from .events import *
|
|
|
|
def register(
|
|
name: str,
|
|
description: str,
|
|
version: str,
|
|
author
|
|
) -> typing.Callable[[typing.Type[Plugin]], typing.Type[Plugin]]:
|
|
pass
|
|
|
|
|
|
def on(
|
|
event: typing.Type[BaseEventModel]
|
|
) -> typing.Callable[[typing.Callable], typing.Callable]:
|
|
pass
|
|
|
|
|
|
def func(
|
|
name: str=None,
|
|
) -> typing.Callable:
|
|
pass
|