Skip to content

Commit

Permalink
fix: urls imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-lymar committed Jun 22, 2024
1 parent f30b487 commit e2c098a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makedoc/urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from django.urls import path

from .views import DataDocView, CreateDocsView, DownloadDocAPIView
from .views import DataDocAPIView, CreateDocsAPIView, DownloadDocAPIView

urlpatterns = [
path("filemake/", CreateDocsView.as_view(), name="file"),
path("filemake/", CreateDocsAPIView.as_view(), name="file"),
path("downloadfile/", DownloadDocAPIView.as_view(), name="downloadfile"),
path("data/", DataDocView.as_view(), name="data"),
path("data/", DataDocAPIView.as_view(), name="data"),
]

0 comments on commit e2c098a

Please sign in to comment.