ft_transcendence/chat/urls.py

10 lines
211 B
Python
Raw Normal View History

2023-12-12 04:05:13 -05:00
from django.urls import path
from django.conf import settings
from django.conf.urls.static import static
from . import views
urlpatterns = [
path("<int:pk>", views.ChatView.as_view(), name="chat_page"),
]