[ADD] GEOFENCING & FACEDETECTION: Add modules for geofencing and facedetection app api's for mobile app (beta)

This commit is contained in:
Horilla
2025-04-28 17:39:24 +05:30
parent c5ccc04416
commit 0113e84548
19 changed files with 312 additions and 0 deletions

15
geofencing/apps.py Normal file
View File

@@ -0,0 +1,15 @@
from django.apps import AppConfig
class GeofencingConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'geofencing'
def ready(self):
from django.urls import include, path
from horilla.urls import urlpatterns
urlpatterns.append(
path("api/geofencing/", include("geofencing.urls")),
)
super().ready()