from django.urls import path from . import views app_name = "chat_api" urlpatterns = [ path("/", views.EnterRoomApi.as_view(), name="enter_room"), path( "chat_group//", views.ChatGroupAPIView.as_view(), name="chat_group" ), path( "chat_messages//", views.ChatMessageAPIView.as_view(), name="chat_messages", ), # path('team_check//', views.TeamCheckAPIView.as_view(), name='team_check'), ]