mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
12 lines
308 B
Python
12 lines
308 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
from download import urls as download_urls
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
# Demo app
|
|
path('', include(download_urls)),
|
|
# Celery progress
|
|
path('celery-progress/', include('celery_progress.urls')),
|
|
] |