added changes on checking similarity

This commit is contained in:
kicap1992
2022-03-21 00:07:28 +08:00
parent 638f0a9aee
commit 9da68fbc38
172 changed files with 99465 additions and 49 deletions

View File

@ -41,6 +41,8 @@ INSTALLED_APPS = [
"corsheaders",
"django_extensions",
'rest_framework',
]
MIDDLEWARE = [

View File

@ -19,4 +19,5 @@ from django.urls import path , include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('base.urls')),
path('api/', include('base.api.urls')),
]