mirror of
https://github.com/huge-dream/django-vue3-admin.git
synced 2026-09-25 21:57:46 +00:00
12 lines
307 B
Python
12 lines
307 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SyncConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "sync"
|
|
verbose_name = "EIP 数据同步"
|
|
|
|
def ready(self):
|
|
# Register adapters with SyncFactory
|
|
from sync.adapters import misc_material # noqa: F401
|