Tests pour le BDS #816

Open
thubrecht wants to merge 40 commits from thubrecht/bds-tests into master
Showing only changes of commit e1d942a7ca - Show all commits

View file

@ -1,4 +1,5 @@
from channels.auth import AuthMiddlewareStack
from channels.http import AsgiHandler
from channels.routing import ProtocolTypeRouter, URLRouter
from django.urls import path
@ -14,5 +15,6 @@ application = ProtocolTypeRouter(
]
)
),
"http": AsgiHandler,
}
)