Files
ihrm/horilla_backup/apps.py

17 lines
390 B
Python
Raw Normal View History

2025-02-14 10:01:07 +05:30
from django.apps import AppConfig
class BackupConfig(AppConfig):
2025-02-14 10:01:07 +05:30
default_auto_field = "django.db.models.BigAutoField"
name = "horilla_backup"
def ready(self):
from django.urls import include, path
2025-02-14 10:01:07 +05:30
from horilla.urls import urlpatterns
urlpatterns.append(
path("backup/", include("horilla_backup.urls")),
)
super().ready()