mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 12:31:11 +00:00
b4e2d6e874
uploaded the required files
10 lines
208 B
Python
10 lines
208 B
Python
## 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")),
|
|
]
|