10 lines
172 B
Python
10 lines
172 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ProfilesConfig(AppConfig):
|
|
name = "account"
|
|
verbose_name = "account"
|
|
|
|
def ready(self):
|
|
import account.signals
|