File size: 318 Bytes
1624b73
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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'),
]