mirror of
https://github.com/django/daphne.git
synced 2025-07-13 17:32:17 +03:00
11 lines
305 B
Python
11 lines
305 B
Python
__version__ = "0.9.5"
|
|
|
|
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
|