1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-30 20:00:30 +00:00
royalnet/royalnet/bots/__init__.py

7 lines
223 B
Python

"""Various bot interfaces, and a common class to create new ones."""
from .generic import GenericBot
from .telegram import TelegramBot
from .discord import DiscordBot
__all__ = ["TelegramBot", "DiscordBot", "GenericBot"]