mirror of
				https://github.com/django/daphne.git
				synced 2025-11-01 00:07:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			378 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			378 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| __version__ = "0.17.2"
 | |
| 
 | |
| 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
 | |
|     from .routing import route, route_class, include  # NOQA isort:skip
 | |
| except ImportError:  # No django installed, allow vars to be read
 | |
|     pass
 |