generated from westfarn/web_django_template
10 lines
160 B
Python
10 lines
160 B
Python
from django.urls import path
|
|
|
|
from core import views
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("files/<uuid:pk>/", views.stored_file, name="stored_file"),
|
|
]
|