9 lines
133 B
Python
9 lines
133 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class MUORconfig(AppConfig):
|
||
|
name = 'MUOR'
|
||
|
|
||
|
def ready(self):
|
||
|
import MUOR.signals
|