from django.urls import path

from . import views

urlpatterns = [
    path('invoice_ocr/', views.InvoiceOCRView.as_view()),
]