rinogeek's picture
Initial Docker configuration for Hugging Face
1624b73
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'),
]