Coverage for website/facedetection/api/facedetection/urls.py: 100.00%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.7, created at 2025-08-14 10:31 +0000

1from django.urls import path 

2 

3from .views import FaceEncodingPostView 

4 

5app_name = "facedetection" 

6 

7urlpatterns = [ 

8 path( 

9 "encodings/<str:type>/<int:pk>/", 

10 FaceEncodingPostView.as_view(), 

11 name="encoding-callback", 

12 ), 

13]