Files
ai_ml_operations 3a14bfb996 Initial commit
2026-08-27 04:17:34 -07:00

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"),
]