Files
django-ram/dcc/driver/apps.py
2022-01-05 12:19:42 +01:00

12 lines
309 B
Python

from django.apps import AppConfig
from health_check.plugins import plugin_dir
class DriverConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'driver'
def ready(self):
from driver.health import DriverHealthCheck
plugin_dir.register(DriverHealthCheck)