8 lines
197 B
Python
8 lines
197 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ScannerConfig(AppConfig):
|
|
name = 'scanner'
|
|
|
|
def ready(self):
|
|
import scanner.models # noqa — active les signaux post_save/post_delete |