from django.apps import AppConfig


class ImageAgregatorConfig(AppConfig):
    default_auto_field = "django.db.models.BigAutoField"
    name = "image_agregator"

    def ready(self):
        import image_agregator.tasks
