GramCore/plugin/methods/__init__.py

18 lines
391 B
Python
Raw Normal View History

2023-12-16 09:36:19 +00:00
from .application import ApplicationMethod
from .delete_message import DeleteMessage
from .download_resource import DownloadResource
from .get_args import GetArgs
from .get_chat import GetChat
from .migrate_data import MigrateData
class PluginFuncMethods(
ApplicationMethod,
DeleteMessage,
DownloadResource,
GetArgs,
GetChat,
MigrateData,
):
"""插件方法"""