9 lines
249 B
Python
9 lines
249 B
Python
# myproject/urls.py
|
|
|
|
from django.contrib import admin
|
|
from django.urls import path, include # Import 'include'
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('chat/', include('chat.urls')), # Include the URLs from the 'chat' app
|
|
]
|