Hi, I have Rails turbo streams and I want to subscribe from my django project. I Try to create a consumer for that but i didn't succeed. Is there a way to do that? Or I just need to use asyncio websocket client for that?
urlpatterns = [
path("cable", ActionCableConsumer.as_asgi()),
path("external",CustomActionCableConsumer.as_asgi())
]