9 lines
139 B
Python
9 lines
139 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class TitoliConfig(AppConfig):
|
||
|
name = 'titoli'
|
||
|
|
||
|
def ready(self):
|
||
|
import titoli.signals
|