
    si                     *    d Z ddlmZ  G d de      Zy)z9
Django application configuration for the biometric app.
    )	AppConfigc                   *     e Zd ZdZdZdZ fdZ xZS )BiometricConfigaL  
    This class defines the configuration for the biometric Django app. It sets the
    default auto field to use a BigAutoField for model primary keys.

    Attributes:
        default_auto_field (str): The default auto field to use for model primary keys.
        name (str): The name of the Django app, which is 'biometric'.
    zdjango.db.models.BigAutoField	biometricc                     ddl m}m} ddlm} ddlm} |j                  d       |j                   |d |d                   ddlm	} t        | -          y )	Nr   )includepath)APPS)urlpatternsr   z
biometric/zbiometric.urls)sidebar)django.urlsr   r	   horilla.horilla_settingsr
   horilla.urlsr   appendr   r   superready)selfr   r	   r
   r   r   	__class__s         2/var/www/python-projects/worksol/biometric/apps.pyr   zBiometricConfig.ready   sD    -1,K w'789	
 	&    )__name__
__module____qualname____doc__default_auto_fieldnamer   __classcell__)r   s   @r   r   r      s     9D r   r   N)r   django.appsr   r    r   r   <module>r       s    "i r   