10 lines
176 B
Python
10 lines
176 B
Python
from django.urls import path, re_path
|
|
|
|
from .views import index_view
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.chat)
|
|
#re_path(r'^', index_view ,name="index"),
|
|
]
|