File size: 135 Bytes
a349f54
 
 
 
 
 
1
2
3
4
5
6
7
from django.urls import path
from .views import predict_view

urlpatterns = [
    path('', predict_view, name='predict_view'),
]