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