8 lines
139 B
Python
8 lines
139 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RxmappConfig(AppConfig):
|
|
name = "rxmapp"
|
|
|
|
def ready(self):
|
|
import rxmapp.signals
|