Files
ihrm/facedetection/apps.py

17 lines
406 B
Python
Raw Normal View History

from django.apps import AppConfig
class FacedetectionConfig(AppConfig):
2025-04-30 14:55:35 +05:30
default_auto_field = "django.db.models.BigAutoField"
name = "facedetection"
def ready(self):
from django.urls import include, path
2025-04-30 14:55:35 +05:30
from horilla.urls import urlpatterns
urlpatterns.append(
path("api/facedetection/", include("facedetection.urls")),
)
2025-04-30 14:55:35 +05:30
super().ready()