This commit is contained in:
Mohamed Nouffer
2021-12-07 13:25:14 +05:30
commit db98352fde
32 changed files with 362 additions and 0 deletions

7
sumasen_easyocr/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.contrib import admin
from django.urls import path, re_path
from .views import FileUploadView
urlpatterns = [
re_path(r'^upload/', FileUploadView.as_view())
]