[ADD] GEOFENCING & FACEDETECTION: Add modules for geofencing and facedetection app api's for mobile app (beta)
This commit is contained in:
15
geofencing/apps.py
Normal file
15
geofencing/apps.py
Normal 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()
|
||||
Reference in New Issue
Block a user