
    vgC                     *    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} |j                   |d |d                   ddlm} t        | %          y )Nr   )includepath)urlpatternsz
biometric/zbiometric.urls)sidebar)
django.urlsr   r	   horilla.urlsr
   appendr   r   superready)selfr   r	   r
   r   	__class__s        "/var/www/horilla/biometric/apps.pyr   zBiometricConfig.ready   s5    -,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   