from django.urls import path from .views.fileview import FileView urlpatterns = [ path('', FileView.as_view()), ]