Files
ihrm/report/apps.py

19 lines
412 B
Python
Raw Permalink Normal View History

from django.apps import AppConfig
class ReportConfig(AppConfig):
2025-05-20 14:14:53 +05:30
default_auto_field = "django.db.models.BigAutoField"
name = "report"
def ready(self) -> None:
ready = super().ready()
from django.urls import include, path
2025-05-20 14:14:53 +05:30
from horilla.urls import urlpatterns
urlpatterns.append(
path("report/", include("report.urls")),
)
2025-05-20 14:14:53 +05:30
return ready