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