mirror of
https://github.com/PaiGramTeam/GramCore.git
synced 2024-11-24 07:10:37 +00:00
18 lines
391 B
Python
18 lines
391 B
Python
|
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,
|
||
|
):
|
||
|
"""插件方法"""
|