mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 19:17:01 +00:00
12 lines
286 B
Python
12 lines
286 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AccountsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'accounts'
|
|
verbose_name = 'App Accounts'
|
|
|
|
def ready(self):
|
|
from . import signal_handlers # noqa
|
|
from . import tasks # noqa
|