8 lines
121 B
Python
8 lines
121 B
Python
from django.urls import path
|
|
|
|
from Messaging import views
|
|
|
|
urlpatterns = [
|
|
path("chat_window", views.chat_window),
|
|
]
|