2025-04-28 17:39:24 +05:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2025-04-30 14:55:35 +05:30
|
|
|
from .views import *
|
2025-04-28 17:39:24 +05:30
|
|
|
|
2025-05-09 11:14:51 +05:30
|
|
|
urlpatterns = [
|
|
|
|
|
path("config/", FaceDetectionConfigAPIView.as_view()),
|
|
|
|
|
path("setup/", EmployeeFaceDetectionGetPostAPIView.as_view()),
|
|
|
|
|
path("", face_detection_config, name="face-config"),
|
|
|
|
|
]
|