From afa46cfe0f2d356b02babc3bcf1e23224866a382 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 22 Mar 2016 10:15:52 -0700 Subject: [PATCH] Provide route and include at top level --- channels/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/channels/__init__.py b/channels/__init__.py index 045dc1c..ed3a88d 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -6,5 +6,6 @@ DEFAULT_CHANNEL_LAYER = 'default' try: from .asgi import channel_layers # NOQA isort:skip from .channel import Channel, Group # NOQA isort:skip + from .routing import route, include except ImportError: # No django installed, allow vars to be read pass