10 lines
211 B
Python
10 lines
211 B
Python
|
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"),
|
||
|
]
|