Source code for pki.apps

"""Configuration for the PKI app."""

from django.apps import AppConfig


[docs] class PkiConfig(AppConfig): """Configuration for the PKI app."""
[docs] default_auto_field = 'django.db.models.BigAutoField'
[docs] name = 'pki'
[docs] def ready(self) -> None: """PKI app initialization.""" import pki.signals as _ # noqa: F401, PLC0415