mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-27 06:27:05 -05:00
7 lines
184 B
Python
7 lines
184 B
Python
from django.urls import path
|
|
from .views import GenerateUploadURLView
|
|
|
|
urlpatterns = [
|
|
path("generate-upload-url/", GenerateUploadURLView.as_view(), name="generate-upload-url"),
|
|
]
|