from django.urls import path
from .views import predict_report


urlpatterns = [
    path('predict/<review_id>/', predict_report, name='predict'),
]