python-scripts/scripts/Chat-App/Chatapp/urls.py

10 lines
208 B
Python
Raw Normal View History

## This will route you to your chat app.
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path("", include("chat.urls")),
]