mirror of
https://github.com/django/daphne.git
synced 2025-10-29 14:57:34 +03:00
20 lines
602 B
Python
20 lines
602 B
Python
__version__ = "0.8"
|
|
|
|
# Load backends, using settings if available (else falling back to a default)
|
|
DEFAULT_CHANNEL_BACKEND = "default"
|
|
from .backends import BackendManager
|
|
from django.conf import settings
|
|
channel_backends = BackendManager(
|
|
getattr(settings, "CHANNEL_BACKENDS", {
|
|
DEFAULT_CHANNEL_BACKEND: {
|
|
"BACKEND": "channels.backends.memory.InMemoryChannelBackend",
|
|
"ROUTING": {},
|
|
}
|
|
})
|
|
)
|
|
|
|
default_app_config = 'channels.apps.ChannelsConfig'
|
|
|
|
# Promote channel to top-level (down here to avoid circular import errs)
|
|
from .channel import Channel, Group
|