10 lines
167 B
Python
10 lines
167 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'library'
|
|
|
|
urlpatterns = [
|
|
path('files/<uuid:file_id>/', views.file_request, name='file_request'),
|
|
]
|