Files
beaver_project/app-instance/backend/nanobot/channels/__init__.py
2026-03-13 16:40:08 +08:00

7 lines
197 B
Python

"""Chat channels module with plugin architecture."""
from nanobot.channels.base import BaseChannel
from nanobot.channels.manager import ChannelManager
__all__ = ["BaseChannel", "ChannelManager"]