8 lines
191 B
Python
8 lines
191 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class CentralisedfilesystemConfig(AppConfig):
|
||
|
name = 'centralisedFileSystem'
|
||
|
def ready(self) -> None:
|
||
|
import centralisedFileSystem.signals
|