9 lines
264 B
Python
9 lines
264 B
Python
from django.urls import include, path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import FileuploadView
|
|
|
|
router = DefaultRouter()
|
|
router.register("FileUpload", FileuploadView, basename="FileUpload")
|
|
urlpatterns = [path("", include(router.urls))]
|