8 lines
116 B
Python
8 lines
116 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import ChatView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("chat/", ChatView.as_view()),
|
||
|
|
]
|