daphne/channels/__init__.py
2016-03-08 10:20:08 -08:00

11 lines
305 B
Python

__version__ = "0.9.4"
default_app_config = 'channels.apps.ChannelsConfig'
DEFAULT_CHANNEL_LAYER = 'default'
try:
from .asgi import channel_layers # NOQA isort:skip
from .channel import Channel, Group # NOQA isort:skip
except ImportError: # No django installed, allow vars to be read
pass