unknown
initial: predictor service
9f68111
Raw
History Blame Contribute Delete
565 Bytes
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('detect/', views.detect_view, name='detect'),
path('detect/process/', views.process_frame, name='process_frame'),
path('database/', views.database, name='database'),
path('predict/', views.predict, name='predict'),
path('upload/', views.upload, name='upload'),
path('get-constellation-info/', views.get_constellation_info, name='get_constellation_info'),
path('process-upload/', views.process_upload, name='process_upload'),
]