mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 20:41:12 +00:00
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")),
|
||
|
]
|