Spaces:
Sleeping
Sleeping
| from django.urls import path | |
| from .views import DetectView, DetectionHistoryView | |
| from .stats_views import StatsView | |
| urlpatterns = [ | |
| path('detect/', DetectView.as_view(), name='detect'), | |
| path('history/', DetectionHistoryView.as_view(), name='history'), | |
| path('stats/', StatsView.as_view(), name='stats'), | |
| ] | |