Spaces:
Sleeping
Sleeping
File size: 185 Bytes
d32e728 | 1 2 3 4 5 6 7 | from django.urls import path
from notifications.api_views import ImageClassifierAPIView
urlpatterns = [
path('classify/', ImageClassifierAPIView.as_view(), name='api_classify'),
]
|