Files
NeoBot/core/api/__init__.py
2026-01-02 14:22:35 +08:00

14 lines
247 B
Python

from .base import BaseAPI
from .message import MessageAPI
from .group import GroupAPI
from .friend import FriendAPI
from .account import AccountAPI
__all__ = [
"BaseAPI",
"MessageAPI",
"GroupAPI",
"FriendAPI",
"AccountAPI",
]