11 lines
155 B
Python
11 lines
155 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UserConfig(AppConfig):
|
|
name = 'apps.user'
|
|
|
|
|
|
def ready(self):
|
|
|
|
|
|
return super().ready() |