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