mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 02:43:14 +08:00
12 lines
310 B
Python
12 lines
310 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SystemConfig(AppConfig):
|
|
name = 'system'
|
|
|
|
def ready(self):
|
|
from .signals import create_menu
|
|
from .signals import user_logged_in_handler
|
|
from .signals import user_logged_out_handler
|
|
from .signals import user_login_failed_handler
|