Files
ihrm/facedetection/apps.py
2025-05-08 16:43:50 +05:30

17 lines
406 B
Python

from django.apps import AppConfig
class FacedetectionConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "facedetection"
def ready(self):
from django.urls import include, path
from horilla.urls import urlpatterns
urlpatterns.append(
path("api/facedetection/", include("facedetection.urls")),
)
super().ready()