nephila/djangocms-blog

View on GitHub
djangocms_blog/liveblog/routing.py

Summary

Maintainability
A
0 mins
Test Coverage
from channels.routing import URLRouter
from django.urls import path

from .consumers import LiveblogConsumer

channel_routing = URLRouter([path("<str:apphook>/<str:lang>/<str:post>/", LiveblogConsumer.as_asgi())])