mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-02-07 00:51:05 +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")),
|
|
]
|