Files
hamprint/apps/submissions/apps.py
2026-05-12 21:10:54 +03:00

12 lines
381 B
Python

from django.apps import AppConfig
class SubmissionsConfig(AppConfig):
name = "apps.submissions"
def ready(self) -> None:
# Imports the module for its `@receiver` side-effect (registers
# `unlink_stl_file_on_delete` with the `post_delete` signal).
# See `apps/submissions/signals.py` and plan.md §7.6.
from . import signals # noqa: F401