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