tuxbot-bot/venv/lib/python3.7/site-packages/websockets/__init__.py

18 lines
383 B
Python
Raw Normal View History

2019-12-16 18:12:10 +01:00
# This relies on each of the submodules having an __all__ variable.
from .client import *
from .exceptions import *
from .protocol import *
from .server import *
from .uri import *
from .version import version as __version__ # noqa
__all__ = (
client.__all__ +
exceptions.__all__ +
protocol.__all__ +
server.__all__ +
uri.__all__
)