17 lines
394 B
Python
17 lines
394 B
Python
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()
|