1
0
Fork 0
slidge-whatsapp/slidge_whatsapp/__init__.py

12 lines
295 B
Python

"""
WhatsApp gateway using the multi-device API.
"""
from slidge.util.util import get_version # noqa: F401
from . import command, config, contact, group, session
from .gateway import Gateway
__version__ = get_version()
__all__ = "Gateway", "session", "command", "contact", "config", "group"