o
    bbhD                     @   s0   d Z ddlmZ ddlmZ G dd deZdS )z
Common app configuration.

This module defines the Django app configuration for the common app,
which provides shared functionality across all other apps.

    )	AppConfig)gettext_lazyc                   @   s(   e Zd ZdZdZdZedZdd ZdS )CommonConfigz
    Configuration class for the common app.
    
    This app provides shared models, utilities, and functionality
    that can be used across all other applications in the project.
    zdjango.db.models.BigAutoFieldzapps.commonZCommonc                 C   sL   zddl m} W n	 ty   Y nw z	ddl m} W dS  ty%   Y dS w )z
        Perform initialization when the app is ready.
        
        This method is called when Django starts up and the app
        registry is fully populated.
           )signals)checksN) r   ImportErrorr   )selfr   r    r   DC:\Users\vibe-look\OneDrive\Desktop\Adtlas_V\src\apps\common\apps.pyready   s   zCommonConfig.readyN)	__name__
__module____qualname____doc__default_auto_fieldname_verbose_namer   r   r   r   r   r      s    r   N)r   django.appsr   django.utils.translationr   r   r   r   r   r   r   <module>   s   