daphne/channels/__init__.py
2015-06-15 00:45:15 -07:00

21 lines
601 B
Python

__version__ = "0.1.1"
# 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",
}
})
)
# Ensure monkeypatching
from .hacks import monkeypatch_django
monkeypatch_django()
# Promote channel to top-level (down here to avoid circular import errs)
from .channel import Channel