Files
ihrm/horilla_api/apps.py
2025-12-23 15:01:24 +05:30

14 lines
359 B
Python

from django.apps import AppConfig
class HorillaApiConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "horilla_api"
def ready(self):
"""
Initialize API documentation when the app is ready
"""
# Import and register API documentation components
import horilla_api.schema # noqa