from django.urls import include, path, re_path from .views import index_scan urlpatterns = [ path('', index_scan.as_view()), ]