8 lines
124 B
Python
8 lines
124 B
Python
# chat/urls.py
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
] |