Files
beaver_project/app-instance/backend-old/nanobot/channels/__init__.py

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"]