From e9c9ef7fc5a8c362c3e421b4ec0a9917683d2ab0 Mon Sep 17 00:00:00 2001 From: RogerWork Date: Sat, 16 Dec 2023 10:34:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=87=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- dingxin_toolbox_drf/urls.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 929f160..d05e275 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /venv/ -.idea \ No newline at end of file +.idea +/log/ \ No newline at end of file diff --git a/dingxin_toolbox_drf/urls.py b/dingxin_toolbox_drf/urls.py index 6670c3e..0699053 100644 --- a/dingxin_toolbox_drf/urls.py +++ b/dingxin_toolbox_drf/urls.py @@ -22,6 +22,6 @@ from rest_framework.authtoken.views import obtain_auth_token urlpatterns = [ path('admin/', admin.site.urls), path('api-token-auth/', obtain_auth_token), - path('update/', include('update.urls')), + path('update/', include('update.urls')), # cinema Update 备注 path('docs/', include_docs_urls(title='接口文档')), ]