mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
10 lines
165 B
Python
10 lines
165 B
Python
from django.urls import path
|
|
# Demo view
|
|
from .views import demo_view
|
|
|
|
app_name = 'download'
|
|
|
|
urlpatterns = [
|
|
# Demo view
|
|
path('', demo_view, name='demo'),
|
|
] |